debug static method

void debug(
  1. Object msg
)

Implementation

static void debug(Object msg) {
  if (TgoRTC.instance.options.debug) {
    developer.log("$msg", name: 'DEBUG');
  }
}