dd method

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

dump the value to the console and exit the app. tag is optional.

Implementation

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