LogLine constructor

LogLine(
  1. String level,
  2. String tag,
  3. String message, {
  4. String? exceptionDump,
  5. String? preFix,
  6. String? postFix,
})

Creates instance of LogLine with optional fields.

Implementation

LogLine(this.level, this.tag, this.message,
    {this.exceptionDump, this.preFix, this.postFix});