getNormalizedLanguage abstract method
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();