SubZeroBottomSheetContent constructor

const SubZeroBottomSheetContent({
  1. Key? key,
  2. Widget? topContent,
  3. bool topContentOverflows = false,
  4. String? kicker,
  5. required String title,
  6. String? description,
  7. Widget? bodyContent,
  8. String? primaryButtonLabel,
  9. VoidCallback? onPrimaryPressed,
  10. String? secondaryButtonLabel,
  11. VoidCallback? onSecondaryPressed,
  12. bool showDualButtons = false,
})

Implementation

const SubZeroBottomSheetContent({
  super.key,
  this.topContent,
  this.topContentOverflows = false,
  this.kicker,
  required this.title,
  this.description,
  this.bodyContent,
  this.primaryButtonLabel,
  this.onPrimaryPressed,
  this.secondaryButtonLabel,
  this.onSecondaryPressed,
  this.showDualButtons = false,
});