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