info method
Log a message at the info level.
Internally mapped to Level.INFO
in the logging
package.
message
The content to log.
tag
Optional log source ID (default: 'flutter_ilib'
). Reserved for future use.
loc
Whether to include caller location infor (default: false
). Reserved for future use.
Implementation
@override
void info(String message, {String tag = defaultTag, bool loc = false}) {
_logger.info(_formatMessage(message, tag, loc));
}