fatal static method

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

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

Implementation

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