debugLog method

void debugLog(
  1. String msg
)

Implementation

void debugLog(String msg) {
  assert(msg != null);
  bool debug = false;
  assert(debug = true);
  if (debug) print("$msg");
}