shoutWithContext method

void shoutWithContext(
  1. String message,
  2. Map? context, [
  3. Object? error,
  4. StackTrace? stackTrace,
])

Implementation

void shoutWithContext(String message, Map? context,
        [Object? error, StackTrace? stackTrace]) =>
    log(
      Level.SHOUT,
      LogRecord(
        Level.SHOUT,
        message,
        fullName,
        error,
        stackTrace,
        Zone.current,
        context,
      ),
    );