fallback static method

ZeroBottomSheetStyle fallback({
  1. Color? backgroundColor,
  2. Color? handleColor,
})

A default value style of ZeroBottomSheetStyle

Implementation

static ZeroBottomSheetStyle fallback({
  Color? backgroundColor,
  Color? handleColor,
}) =>
    ZeroBottomSheetStyle(
      backgroundColor: backgroundColor ?? ZeroColors.white,
      handleColor: handleColor ?? ZeroColors.neutral[7],
      barierColor: null,
      borderRadius: const BorderRadius.vertical(top: Radius.circular(28)),
      useHandle: true,
      elevation: 10,
    );