dump method

dynamic dump({
  1. String? tag,
})

dump the value to the console. tag is optional.

Implementation

dump({String? tag}) {
  NyLogger.dump((this ?? "").toString(), tag);
}