show static method

VoidCallback show(
  1. BuildContext context, {
  2. required Widget child,
  3. VxDrawerType type = VxDrawerType.left,
  4. bool showMask = true,
  5. bool autoHide = false,
})

Implementation

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