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