debug property

set debug (bool debug)

Implementation

static set debug(bool debug) {
  try {
    print("$TAG : setDebug =>$debug");
    AliIotPlugin.debug = debug;
    AliIotPlugin.methodChannel.invokeMethod('setDebug', {"debug": debug});
  } catch (e) {
    print(e);
  }
}