getLanguageCodeByIndex static method
- int index
Get the language codes for the specified index.
Parameters
- IN index The country index
Returns
Throws
- An exception if it fails.
Implementation
static List<String> getLanguageCodeByIndex(final int index) {
final OperationResult resultString = objectMethod(
0,
'MapDetails',
'getLanguageCodesByIndex',
args: index,
);
return (resultString['result'] as List<dynamic>).cast<String>();
}