warning static method

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

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

Implementation

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