toBottomSheetTheme method

BottomSheetThemeData toBottomSheetTheme()

Convert ZeroBottomSheetStyle to theme data bottom sheet material BottomSheetThemeData

Implementation

BottomSheetThemeData toBottomSheetTheme() => BottomSheetThemeData(
      backgroundColor: backgroundColor,
      shape: RoundedRectangleBorder(
        borderRadius: borderRadius ?? BorderRadius.zero,
      ),
      modalBarrierColor: barierColor,
      elevation: elevation,
      surfaceTintColor: backgroundColor,
      modalBackgroundColor: backgroundColor,
    );