AttachmentChip constructor

const AttachmentChip({
  1. Key? key,
  2. required Attachment attachment,
  3. required VoidCallback onRemove,
})

Implementation

const AttachmentChip({
  super.key,
  required this.attachment,
  required this.onRemove,
});