attach method
Attaches a name-value pair to the log.
Implementation
LogBuilder attach(String name, dynamic value) {
_builder = "$_builder$_attachingSeparator$value, ";
return this;
}
Attaches a name-value pair to the log.
LogBuilder attach(String name, dynamic value) {
_builder = "$_builder$_attachingSeparator$value, ";
return this;
}