getCountryNameByISO static method
- String code
Get the country name for the specified ISO code.
Parameters
- IN code The country code
Returns
- Country name as string
Implementation
static String getCountryNameByISO(final String code) {
final OperationResult resultString = staticMethod(
'MapDetails',
'getCountryNameByISO',
args: code,
);
return resultString['result'];
}