v static method

void v(
  1. Object? object, {
  2. String? tag,
  3. bool isJsonModel = false,
})

Implementation

static void v(Object? object, {String? tag, bool isJsonModel = false}) {
  if (isJsonModel == true) {
    Map<String, dynamic> user = convert.jsonDecode(object.toString());
    _logger.v(user);
  } else {
    _log(object.toString(), tag: tag);
  }
}