AttachmentApiResult constructor

AttachmentApiResult({
  1. required String id,
  2. required String fileId,
  3. required String type,
  4. required double size,
  5. required DateTime createdDate,
  6. required String createdById,
  7. required String name,
  8. DateTime? modifiedDate,
  9. String? modifiedById,
})

Returns a new AttachmentApiResult instance.

Implementation

AttachmentApiResult({
  required this.id,
  required this.fileId,
  required this.type,
  required this.size,
  required this.createdDate,
  required this.createdById,
  required this.name,
  this.modifiedDate,
  this.modifiedById,
});