debug static method

void debug(
  1. String type, [
  2. dynamic message,
  3. dynamic info,
  4. dynamic moreInfo,
])

Implementation

static void debug(String type, [message, info, moreInfo]) {
  if (kDebugMode) {
    log(type, message, info, moreInfo);
  }
}