critical static method

void critical(
  1. String message, {
  2. String? tag,
  3. Object? error,
  4. StackTrace? stackTrace,
})

Implementation

static void critical(String message,
        {String? tag, Object? error, StackTrace? stackTrace}) =>
    log(LogLevel.critical, message,
        tag: tag, error: error, stackTrace: stackTrace);