showBottomDrawer static method
Implementation
static Future<Object?> showBottomDrawer(
BuildContext context,
Widget view, {
double? windowHeight,
Color barrierColor = Colors.black54,
bool barrierDismissible = true,
Function(Object? result)? onResult,
}) async {
return await Navigator.of(context)
.push(_BottomPopupWindowRoute(context,
view, windowHeight, barrierColor, barrierDismissible));
}