LocaleRef class

A reference to a locale, such as Australian English.

Inheritance

Constructors

LocaleRef(String languageCode, String countryCode)
Creates a new LocaleRef from a languageCode and a countryCode.
LocaleRef.fromCode(String localeCode)
Creates a new LocaleRef from a localeCode.
factory

Properties

countryCode String
The country code, such as 'US'.
final
hashCode int
The hash code for this object.
no setterinherited
languageCode String
The language code, such as 'en'.
final
localeCode String
no setter
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setterinherited
ref String?
The value of this reference.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
type Type?
The type of this reference.
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

tryFromCode(String localeCode) LocaleRef?