show<T> static method

Future<bool?> show<T>(
  1. BuildContext context
)

Displays a BackgroundAudioDisclaimerView wrapped in a ModalPopup.

Implementation

static Future<bool?> show<T>(BuildContext context) {
  return ModalPopup.show(
    context: context,
    child: BackgroundAudioDisclaimerView(),
  );
}