startDevicePanel static method

Future<bool?> startDevicePanel(
  1. String iotId
)

Implementation

static Future<bool?> startDevicePanel(String iotId) {
  if (AliIotPlugin.debug) {
    print("$TAG : startDevicePanel $iotId");
  }
  return AliIotPlugin.methodChannel.invokeMethod('startDevicePanel', {
    "iotId": iotId,
  });
}