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