getLanguageCode static method
- Coordinates coords
Get the language codes for the specified coordinates.
Empty list means no coordinates match.
Parameters
- IN coords The coordinates
Returns
Implementation
static List<String> getLanguageCode(final Coordinates coords) {
final OperationResult resultString = staticMethod(
'MapDetails',
'getLanguageCodes',
args: coords,
);
return (resultString['result'] as List<dynamic>).cast<String>();
}