LoggingContext typedef

LoggingContext = ({Map<String, dynamic> bindings, List<String> extraTags, LogLevel minimumLogLevel, List<LogTransport> transports})

The context that keeps track of the transports and configuration

Implementation

typedef LoggingContext =
    ({
      List<LogTransport> transports,
      LogLevel minimumLogLevel,
      List<String> extraTags,
      Map<String, dynamic> bindings,
    });