error static method

void error(
  1. String message, [
  2. String? tag
])

Prints the error message with tag to the me.Log.

Implementation

static void error(String message, [String? tag]) {
  me.Log.error('${tag != null ? '[$tag]' : ''} $message');
  _breadcrumb(message, tag, SentryLevel.error);
}