v static method
Logs VERBOSE level message
with optional exception and stacktrace
Implementation
static void v(
String message, {
dynamic ex,
StackTrace? stacktrace,
Map<String, String?>? attributes,
}) {
log('V', message, ex: ex, stacktrace: stacktrace, attributes: attributes);
}