BottomButtonPanel constructor

const BottomButtonPanel({
  1. Key? key,
  2. required String mainButtonName,
  3. required VoidCallback mainButtonOnTap,
  4. String? secondaryButtonName,
  5. VoidCallback? secondaryButtonOnTap,
  6. bool enableMainButton = true,
  7. bool enableSecondaryButton = true,
  8. 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);