getLanguageNativeName static method

String getLanguageNativeName(
  1. 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:

Implementation

static String getLanguageNativeName(final Language language) {
  final OperationResult resultString = staticMethod(
    'Localization',
    'getLanguageNativeName',
    args: language,
  );

  return resultString['result'];
}