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