attach method

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

Attaches a name-value pair to the log.

Implementation

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