MultipleBottomButton constructor

const MultipleBottomButton({
  1. Key? key,
  2. dynamic mainButton,
  3. dynamic subButton,
  4. VoidCallback? onMainButtonTap,
  5. VoidCallback? onSubButtonTap,
  6. void onSelectedButtonTap(
    1. BrnMultipleButtonArrowState
    )?,
  7. void onSelectAll(
    1. bool?
    )?,
  8. bool hasArrow = false,
  9. BrnMultipleBottomController? bottomController,
})

Implementation

const MultipleBottomButton(
    {Key? key,
    this.mainButton,
    this.subButton,
    this.onMainButtonTap,
    this.onSubButtonTap,
    this.onSelectedButtonTap,
    this.onSelectAll,
    this.hasArrow = false,
    this.bottomController})
    : super(key: key);