v static method

void v(
  1. String tag,
  2. String message
)

Implementation

static void v(String tag, String message) {
  if (logLevel.index <= LogLevel.VERBOSE.index) {
    log('V/[$tag]: $message');
  }
}