info method
Log a new info message
dynamic message - message describes what happened
Object? exception - exception if it happened
StackTrace? stackTrace - stackTrace if exception happened
talker.info('Log info');
Implementation
void info(
dynamic msg, [
Object? exception,
StackTrace? stackTrace,
]) {
_handleLog(msg, exception, stackTrace, LogLevel.info);
}