show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. required Release release,
  3. bool critical = false,
})

Displays an UpgradePopupView wrapped in a ModalPopup.

Implementation

static Future<T?> show<T>(
  BuildContext context, {
  required Release release,
  bool critical = false,
}) {
  return ModalPopup.show(
    context: context,
    child: UpgradePopupView(release, critical: critical),
    isDismissible: !critical,
  );
}