show method
Implementation
@override
Future<IsoCode?> show(
BuildContext context,
) {
return Navigator.of(context).push(
MaterialPageRoute(
builder: (ctx) => _getCountrySelectorPage(
onCountrySelected: (country) => Navigator.pop(context, country),
inputContext: context,
),
),
);
}