MessageLookup class

Inheritance
  • Object
  • MessageLookupByLibrary
  • MessageLookup

Constructors

MessageLookup()

Properties

localeName → String
Subclasses should override this to return their locale, e.g. 'en_US'
read-only, override
messages → Map<String, dynamic>
Subclasses should override this to return a list of their message implementations. In this class these are functions, but subclasses may implement them differently.
final
hashCode → int
The hash code for this object. [...]
read-only, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited

Methods

evaluateMessage(dynamic translation, List args) → String
Evaluate the translated message and return the translated string.
inherited
lookupMessage(String message_str, { String locale, { String name, { List args, String meaning, { MessageIfAbsent ifAbsent }) → String
Return the localized version of a message. We are passed the original version of the message, which consists of a message_str that will be translated, and which may be interpolated based on one or more variables, a desc providing a description of usage for the message_str, and a map of examples for each data element to be substituted into the message. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() → String
Returns a string representation of this object.
inherited

Operators

operator ==(dynamic other) → bool
The equality operator. [...]
inherited
operator [](String messageName) → dynamic
Return our message with the given name
inherited