bindByToken static method

Future bindByToken(
  1. String productKey,
  2. String deviceName,
  3. String token
)

Implementation

static Future<dynamic> bindByToken(String productKey, String deviceName, String token) async {
  if (AliIotPlugin.debug) {
    print("$TAG : bindByToken");
  }
  return AliIotPlugin.methodChannel.invokeMethod('bindByToken', {"productKey": productKey, "deviceName": deviceName, "token": token});
}