Attachment constructor

Attachment({
  1. Uint8List? data,
  2. String? fileName,
})

Implementation

Attachment({
  this.data,
  this.fileName,
});