BottomButtonPanel constructor
const
BottomButtonPanel({
- Key? key,
- required String mainButtonName,
- required VoidCallback mainButtonOnTap,
- String? secondaryButtonName,
- VoidCallback? secondaryButtonOnTap,
- bool enableMainButton = true,
- bool enableSecondaryButton = true,
- List<
VerticalIconButton> ? iconButtonList,
Implementation
const BottomButtonPanel(
{Key? key,
required this.mainButtonName,
required this.mainButtonOnTap,
this.secondaryButtonName,
this.secondaryButtonOnTap,
this.enableMainButton = true,
this.enableSecondaryButton = true,
this.iconButtonList})
: super(key: key);