Attachment constructor

Attachment({
  1. required AttachmentData data,
  2. String? id,
  3. String? description,
  4. String? filename,
  5. String? mediaType,
  6. String? format,
  7. DateTime? lastmodTime,
  8. int? byteCount,
})

Implementation

Attachment(
    {required this.data,
    this.id,
    this.description,
    this.filename,
    this.mediaType,
    this.format,
    this.lastmodTime,
    this.byteCount});