v static method
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);
}
}