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 {
  await _channel.invokeMethod(
    'setCountryCode',
    <String, dynamic>{
      'countryCode': countryCode,
    },
  );
}