LogBuilder constructor

LogBuilder(
  1. String tag
)

Creates a new instance of LogBuilder with the specified tag.

Implementation

LogBuilder(this.tag) {
  _builder = "$tag\n {$_lineBreak";
}