show<T> static method
- BuildContext context, {
- Set<
IsoCode> available = const {}, - 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),
);
}