dprint function

void dprint(
  1. Object? object
)

Implementation

void dprint(Object? object) {
  if (kDebugMode) {
    print(object);
  }
}