RothkoBottomSheetStandard constructor

const RothkoBottomSheetStandard({
  1. Key? key,
  2. required String header,
  3. String? subtitle,
  4. bool? primaryBtnLoading,
  5. dynamic primaryBtnOnTap()?,
  6. bool? secondaryBtnLoading,
  7. dynamic secondaryBtnOnTap()?,
  8. String? primaryBtnText,
  9. String? secondaryBtnText,
  10. bool? expand,
  11. bool? snap,
  12. double? initialChildSize,
  13. double? maxChildSize,
  14. double? minChildSize,
  15. required Widget? content,
  16. required bool? doubleCta,
})

Implementation

const RothkoBottomSheetStandard(
    {Key? key,
    required this.header,
    this.subtitle,
    this.primaryBtnLoading,
    this.primaryBtnOnTap,
    this.secondaryBtnLoading,
    this.secondaryBtnOnTap,
    this.primaryBtnText,
    this.secondaryBtnText,
    this.expand,
    this.snap,
    this.initialChildSize,
    this.maxChildSize,
    this.minChildSize,
    required this.content,
    required this.doubleCta})
    : super(key: key);