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