show static method

void show(
  1. BuildContext context, {
  2. List<Widget>? items,
  3. Color? backgroundColor,
})

Implementation

static void show(
  BuildContext context, {
  List<Widget>? items,
  Color? backgroundColor,
}) {
  FullScreenMenuUtil.createView(
    context: context,
    child: FullScreenMenuBaseWidget(
      onHide: FullScreenMenuUtil.dismiss,
      backgroundColor: backgroundColor,
      items: items,
      context: context,
    ),
  );
}