setCountryCode static method

Future<void> setCountryCode(
  1. String countryCode
)

Sets a country/region code. This method is available only for Huawei-developed apps.

Implementation

static Future<void> setCountryCode(String countryCode) async {
  methodChannel.invokeMethod("setCountryCode", {"countryCode": countryCode});
}