requestCountrySelector method
Implementation
@override
Future<Country?> requestCountrySelector(BuildContext context) {
return showModalBottomSheet<Country>(
clipBehavior: Clip.hardEdge,
context: context,
builder: (_) => SizedBox(
height: height ?? MediaQuery.of(context).size.height - 90,
child: _getCountrySelector(
isBottomSheet: true,
onCountrySelected: (country) => Navigator.pop(context, country),
),
),
isScrollControlled: true,
);
}