FastToolboxButton constructor

const FastToolboxButton({
  1. Key? key,
  2. bool selected = false,
  3. bool expandable = false,
  4. Widget? icons,
  5. GestureTapCallback? onTap,
})

Implementation

const FastToolboxButton({
  Key? key,
  this.selected = false,
  this.expandable = false,
  this.icons,
  this.onTap,
}) : super(key: key);