BottomSheetRoute<T> constructor

BottomSheetRoute<T>({
  1. required Widget body,
  2. BottomSheetConfig? config,
})

Implementation

BottomSheetRoute({
  required this.body,
  BottomSheetConfig? config,
}) {
  _config = defaultConfig.coptyWith(config);
}