fatal static method
Adds a log to the root controller, with the level DebugConsoleLevel.fatal
.
Same as:
DebugConsole.log(message, level: DebugConsoleLevel.fatal, ... );
Implementation
static void fatal(
Object? message, {
DateTime? timestamp,
StackTrace? stackTrace,
}) =>
log(
message,
level: DebugConsoleLevel.fatal,
timestamp: timestamp,
stackTrace: stackTrace,
);