v method

void v(
  1. Object? object, {
  2. String? tag,
})

verbose log

Implementation

void v(Object? object, {String? tag}) {
  if (level.index > LogLevel.verbose.index) {
    return;
  }
  String t = tag == null ? 'V' : '$tag';
  _print(object, t, '0', LogLevel.verbose);
}