show static method

Future show(
  1. BottomSheetPanel bottomSheetPanel
)

Implementation

static Future show(BottomSheetPanel bottomSheetPanel) async {
  assert(Get.isRegistered<OverController>());
  final _result = await Get.find<OverController>().showBottomSheet(bottomSheetPanel);

  return _result;
}