infoWithContext method

void infoWithContext(
  1. String message,
  2. Map? context
)

Implementation

void infoWithContext(String message, Map? context) => log(
      Level.INFO,
      LogRecord(
        Level.INFO,
        message,
        fullName,
        null,
        null,
        Zone.current,
        context,
      ),
    );