getIsoCountryCode static method

Future<String> getIsoCountryCode()

Implementation

static Future<String> getIsoCountryCode() async {
  final String getIsoCountryCode =
      await _nativeChannel.invokeMethod(GET_ISO_COUNTRY_CODE);
  Logger.log('TabooalaNative | getIsoCountryCode = $getIsoCountryCode');
  return getIsoCountryCode;
}