getLanguageNativeName static method
- Language language
Retrieves the native name of the given language.
The native name is the name of the language in that language itself.
Parameters
language: The Language for which to retrieve the native name.
Returns
The native name of the specified language.
Also see:
- Language.name - The name of the language.
Implementation
static String getLanguageNativeName(final Language language) {
final OperationResult resultString = staticMethod(
'Localization',
'getLanguageNativeName',
args: language,
);
return resultString['result'];
}