ChannelAttachment constructor

const ChannelAttachment({
  1. required String type,
  2. required String url,
  3. String? filename,
  4. String? mimeType,
  5. int? size,
})

Implementation

const ChannelAttachment({
  required this.type,
  required this.url,
  this.filename,
  this.mimeType,
  this.size,
});