LogWriter constructor

const LogWriter(
  1. List<String>? onlyTags,
  2. List<String>? exceptTags,
  3. LogLevel? onlyLevel,
  4. LogLevel? minLevel,
)

Implementation

const LogWriter(this.onlyTags, this.exceptTags, this.onlyLevel, this.minLevel)
    : assert(onlyTags == null || exceptTags == null),
      assert(onlyLevel == null || minLevel == null);