dd method

void dd({
  1. String? tag,
})

dump the value to the console and exit the app. tag is optional. On web the exit step is skipped (dart:io's exit() is unavailable).

Implementation

void dd({String? tag}) {
  NyLogger.dd(toString(), tag);
}