v static method

void v(
  1. String message, {
  2. String tag = "",
  3. bool path = false,
})

v : verbose V (Verbose): Lowest priority level used for debugging purposes, providing the most extensive amount of logs.

Implementation

static void v(String message, {String tag = "", bool path = false}) => debugPrint(LogExtension.convert(tag: tag, message: message, logType: LogType.verbose, path: path));