FeedbackAttachment constructor

const FeedbackAttachment({
  1. required AttachmentKind kind,
  2. required String key,
  3. required String url,
  4. String? filename,
  5. String? mimeType,
  6. int? size,
})

Creates a FeedbackAttachment metadata record.

Implementation

const FeedbackAttachment({
  required this.kind,
  required this.key,
  required this.url,
  this.filename,
  this.mimeType,
  this.size,
});