debug static method

dynamic debug(
  1. String s
)

Implementation

static debug(String s) {
  if (kDebugMode) {
    print(s);
  }
}