BaseStreamInfo constructor

BaseStreamInfo({
  1. required String id,
  2. required String mimeType,
  3. required String topic,
  4. required int timestamp,
  5. required int size,
  6. Map<String, String> attributes = const {},
  7. String sendingParticipantIdentity = '',
  8. EncryptionType encryptionType = EncryptionType.kNone,
})

Implementation

BaseStreamInfo({
  required this.id,
  required this.mimeType,
  required this.topic,
  required this.timestamp,
  required this.size,
  this.attributes = const {},
  this.sendingParticipantIdentity = '',
  this.encryptionType = EncryptionType.kNone,
});