dd method
dump the value to the console and exit the app. tag
is optional.
Implementation
void dd({String? tag}) {
NyLogger.dump((this ?? "").toString(), tag);
exit(0);
}
dump the value to the console and exit the app. tag
is optional.
void dd({String? tag}) {
NyLogger.dump((this ?? "").toString(), tag);
exit(0);
}