initializeInternalMessageLookup function
Initialize the message lookup mechanism. This is for internal use only.
User applications should import message_lookup_by_library.dart
and call
initializeMessages
Implementation
void initializeInternalMessageLookup(Function lookupFunction) {
if (messageLookup is UninitializedLocaleData<dynamic>) {
// This line has to be precisely this way to work around an analyzer crash.
(messageLookup as UninitializedLocaleData<dynamic>)._reportErrors();
messageLookup = lookupFunction();
}
}