InputAttachment constructor

const InputAttachment({
  1. required String name,
  2. required String mimeType,
  3. required Uint8List bytes,
  4. required AttachmentKind kind,
})

Implementation

const InputAttachment({
  required this.name,
  required this.mimeType,
  required this.bytes,
  required this.kind,
});