AttachmentButton constructor

const AttachmentButton({
  1. Key? key,
  2. bool isLoading = false,
  3. VoidCallback? onPressed,
  4. EdgeInsets padding = EdgeInsets.zero,
})

Creates attachment button widget.

Implementation

const AttachmentButton({
  super.key,
  this.isLoading = false,
  this.onPressed,
  this.padding = EdgeInsets.zero,
});