show<T> static method

Future<IsoCode?> show<T>(
  1. BuildContext context, {
  2. Set<IsoCode> available = const {},
  3. Set<IsoCode> restricted = const {},
})

Displays a SelectCountryView wrapped in a ModalPopup.

Implementation

static Future<IsoCode?> show<T>(
  BuildContext context, {
  Set<IsoCode> available = const {},
  Set<IsoCode> restricted = const {},
}) {
  return ModalPopup.show(
    context: context,
    child: SelectCountryView(available: available, restricted: restricted),
  );
}