v static method

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

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);
  }
}