detectLocaleCountry property

Future<String?> detectLocaleCountry

Implementation

static Future<String?> get detectLocaleCountry async {
  final String? country = await _channel.invokeMethod('detectLocaleCountry');
  return country;
}