fatal method
void
fatal(})
Logs a message with LogLevel.fatal.
Implementation
void fatal(
String message, {
Object? error,
StackTrace? stackTrace,
Map<String, Object?>? context,
bool printStackTrace = true,
bool printError = true,
}) =>
log(
message,
level: LogLevel.fatal,
error: error,
stackTrace: stackTrace,
context: context,
printStackTrace: printStackTrace,
printError: printError,
);