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