getDeviceCountryCode static method
Get device country/region code (estimation only)
Implementation
static Future<String?> getDeviceCountryCode() async {
try {
final locale = ui.PlatformDispatcher.instance.locale;
return locale.countryCode?.toUpperCase();
} catch (_) {}
return null;
}