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