error static method
Prints the error message
with tag
to the me.Log.
Implementation
static void error(String message, [String? tag]) {
_print(me.LogLevel.error, '${tag != null ? '[$tag]' : ''} $message');
_breadcrumb(message, tag, SentryLevel.error);
}