debug method

void debug(
  1. Object msg
)

Implementation

void debug(Object msg) {
  if (isDebug) {
    print(msg.toString());
  }
}