AttachmentButton constructor

const AttachmentButton({
  1. Key? key,
  2. void onPressed()?,
})

Creates attachment button widget

Implementation

const AttachmentButton({
  Key? key,
  this.onPressed,
}) : super(key: key);