formatIgnoringPound method
Returns a formatted message, treating '#' as literal character.
The namedParameters
either influence the formatting or are used as
actual data.
I.e. in call to fmt.format({'NUM_PEOPLE': 5, 'NAME': 'Angela'})
, the
map {'NUM_PEOPLE': 5, 'NAME': 'Angela'}
holds positional parameters.
NUM_PEOPLE
parameter could mean 5 people, which could influence plural
format, and NAME
parameter is just a data to be printed out in proper
position.
Implementation
String formatIgnoringPound([Map<String, Object>? namedParameters]) {
return _format(true, namedParameters);
}