AttachmentUpdate constructor

AttachmentUpdate({
  1. required AttachmentUpdateVersion version,
  2. required String id,
  3. required AttachmentUpdateType type,
  4. String? title,
  5. AttachmentUpdateMetadata? metadata,
  6. AttachmentUpdateContainer? container,
})

Implementation

AttachmentUpdate(
    {required this.version,
    required this.id,
    required this.type,
    this.title,
    this.metadata,
    this.container});