merge method

Implementation

BottomSheetThemeData merge(BottomSheetThemeData? style) {
  if (style == null) return this;
  return BottomSheetThemeData(
    backgroundColor: style.backgroundColor ?? backgroundColor,
    handleColor: style.handleColor ?? handleColor,
    shape: style.shape ?? shape,
    elevation: style.elevation ?? elevation,
  );
}