showAppDialog<T> method

Future<T?> showAppDialog<T>({
  1. required Widget dialog,
})

Implementation

Future<T?> showAppDialog<T>({required Widget dialog}) =>
    showDialog<T>(context: this, builder: (_) => dialog);