showBottomNotification static method

VoidCallback showBottomNotification(
  1. BuildContext context, {
  2. required Widget child,
  3. bool showMask = false,
  4. bool autoHide = true,
})

Implementation

static VoidCallback showBottomNotification(
  BuildContext context, {
  required Widget child,
  bool showMask = false,
  bool autoHide = true,
}) {
  return _showBaseDrawer(
    context,
    child: child,
    type: VxDrawerType.bottom,
    showMask: showMask,
    autoHide: autoHide,
  );
}