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