getNormalizedLanguage abstract method

String getNormalizedLanguage()

Returns normalized language (lowercase).

This method ensures the language code is in the standard lowercase format, which is useful for consistent comparisons and storage.

Example:

final locale = Locale('EN');
print(locale.getNormalizedLanguage()); // Output: "en"

Implementation

String getNormalizedLanguage();