verbose method
void
verbose(})
Log at verbose level
Implementation
void verbose(
dynamic message, {
dynamic exception,
String? information,
Map<String, dynamic>? metadata,
}) {
logs.add(
LogEntry(
level: LoggingLogLevel.verbose,
message: message,
exception: exception,
information: information,
metadata: metadata,
timestamp: DateTime.now(),
),
);
}