AttachmentData constructor

const AttachmentData({
  1. required String type,
  2. String? taskType,
  3. String? status,
  4. int? count,
  5. List<Map<String, dynamic>>? memories,
})

Implementation

const AttachmentData({
  required this.type,
  this.taskType,
  this.status,
  this.count,
  this.memories,
});