printVerbose function

void printVerbose(
  1. Object? object, [
  2. String end = "\n"
])

Implementation

void printVerbose(Object? object, [String end = "\n"]) {
  final msg = _getMsg(verboseColor, "VERBOSE", object);
  _outSink.write(msg);
  _outSink.write(end);
}