v static method

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

Implementation

static void v(Object? object, {String? tag}) {
  if (_debugMode) {
    if(_vUseDartChannel){
      tag = tag ?? _tagValue;
      log('$tag v | ${object?.toString()}');
      return;
    }
    _printLog(tag, ' v ', object);
  }
}