dump static method

void dump(
  1. dynamic message, {
  2. String? tag,
  3. bool alwaysPrint = false,
})

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);
}