getCountryNameByISO static method

String getCountryNameByISO(
  1. String code
)

Returns the country name for the supplied ISO 3166-1 alpha-3 code.

Parameters

  • code: (String) ISO 3166-1 alpha-3 country code.

Returns

  • (String) The country name for the given code.

Implementation

static String getCountryNameByISO(final String code) {
  final OperationResult resultString = staticMethod(
    'MapDetails',
    'getCountryNameByISO',
    args: code,
  );

  return resultString['result'];
}