v static method
Implementation
static void v(Object object, {String? tag}) {
if(RxNet().collectLogs){
RxNet().addLogs("${tag??tagDefault} ${object.toString()}");
}
if(_debugMode){
if (_isSystemPrint){
print("${tag??tagDefault} ${object.toString()}");
return;
}
_printLog(tag??tagDefault, '', object);
}
}