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