setDeviceStaticIP method

  1. @override
Future<String?> setDeviceStaticIP(
  1. String devSn,
  2. String devMac,
  3. String devEkey,
  4. int keyType,
  5. int staticEnable,
  6. String staticIP,
  7. String gateway,
  8. String mask,
  9. String dns,
)
override

Implementation

@override
Future<String?> setDeviceStaticIP(
    String devSn,
    String devMac,
    String devEkey,
    int keyType,
    int staticEnable,
    String staticIP,
    String gateway,
    String mask,
    String dns) async{
  final result = await methodChannel.invokeMethod('setDeviceStaticIP', {"devSn": devSn, "devMac":devMac, "devEkey":devEkey, "keyType":keyType, "staticEnable":staticEnable, "staticIP":staticIP,
  "gateway":gateway, "mask":mask, "dns":dns});
  return result;
}