debug static method

void debug(
  1. dynamic msg
)

Implementation

static void debug(dynamic msg) {
  if (dartDebug) {
    print(('$msg'));
  }
}