getCountryCode method

Future<String?> getCountryCode()

Obtains the country/region code of the data processing location you have specified when you choose to manually manage and specify such a location.

When the parameter value is invalid or not specified, null will be returned.

Implementation

Future<String?> getCountryCode() async {
  return await _channel.invokeMethod(
    'bodyApp#getCountryCode',
  );
}