AttachmentResult constructor

const AttachmentResult({
  1. required String path,
  2. required AttachmentType type,
  3. required String name,
  4. int? sizeBytes,
})

Creates a new AttachmentResult.

Implementation

const AttachmentResult({
  required this.path,
  required this.type,
  required this.name,
  this.sizeBytes,
});