attachEnd method

LogBuilder attachEnd(
  1. String name,
  2. dynamic value
)

Attaches the final name-value pair to the log and ends the attachment section.

Implementation

LogBuilder attachEnd(String name, dynamic value) {
  _builder = "$_builder$name$_attachingSeparator$value ]$_lineBreak";
  return this;
}