Attachment constructor

Attachment({
  1. String? type,
  2. Data? data,
})

Implementation

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