AttachmentFile constructor

const AttachmentFile({
  1. required String filename,
  2. required String extension,
  3. required Uint8List data,
  4. String? path,
  5. MediaType? contentType,
})

Implementation

const AttachmentFile({
  required this.filename,
  required this.extension,
  required this.data,
  this.path,
  this.contentType,
});