dump static method
Logs a message
with a custom tag
.
Only logs in debug mode unless alwaysPrint
is set to true
.
Implementation
static void dump(
dynamic message, {
String? tag,
bool alwaysPrint = false,
}) {
_log(message, type: tag, alwaysPrint: alwaysPrint);
}