BottomSheetBuilder constructor

BottomSheetBuilder({
  1. Function? action,
  2. Color? backgroundColor,
  3. Color? textColor,
  4. Color? primaryColor,
  5. bool? isError,
  6. String? message,
  7. bool? showPrimaryButton,
  8. bool? showSecondaryButton,
  9. bool? showTertiaryButton,
  10. Color? buttonColor,
  11. Color? borderColor,
  12. EdgeInsets? customPadding,
  13. Function? callback,
  14. Function? primaryButtonCallback,
  15. Function? secondaryActionCallback,
  16. String? secondaryButtonText,
  17. String? primaryActionText,
  18. Function? primaryActionCallback,
  19. String? primaryButtonText,
  20. Function? tertiaryActionCallback,
  21. Function? secondaryButtonCallback,
  22. String? secondaryActionText,
  23. String? tertiaryActionText,
})

Implementation

BottomSheetBuilder(
    {this.action,
    this.backgroundColor,
    this.textColor,
    this.primaryColor,
    this.isError,
    this.message,
    this.showPrimaryButton,
    this.showSecondaryButton,
    this.showTertiaryButton,
    this.buttonColor,
    this.borderColor,
    this.customPadding,
    this.callback,
    this.primaryButtonCallback,
    this.secondaryActionCallback,
    this.secondaryButtonText,
    this.primaryActionText,
    this.primaryActionCallback,
    this.primaryButtonText,
    this.tertiaryActionCallback,
    this.secondaryButtonCallback,
    this.secondaryActionText,
    this.tertiaryActionText});