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