dump method

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

dump the value to the console. tag is optional. alwaysPrint is optional.

Implementation

dump({String? tag, bool alwaysPrint = false}) {
  NyLogger.dump(this.toString(), tag, alwaysPrint: alwaysPrint);
}