Attachment constructor

Attachment({
  1. List<String>? mimeType,
  2. String? name,
})

Implementation

Attachment({
  this.mimeType,
  this.name,
});