getCountry static method

Future<String?> getCountry()

Returns the user's country, either as previously stored, or as guessed from the system.

Implementation

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