showLocales static method
Implementation
static Future<Locale?> showLocales(
BuildContext context, [
String? reason,
]) async {
try {
if (i.delegate == null) return null;
return i.delegate!.select(context, reason);
} catch (msg) {
i.log(msg);
return null;
}
}