warning static method
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);
}