show static method

Future show(
  1. DialogPanel dialogPanel
)

Implementation

static Future show(DialogPanel dialogPanel) async {
  assert(Get.isRegistered<OverController>());
  final _result = await Get.find<OverController>().showBottomSheet(dialogPanel);
  return _result;
}