setDeviceStaticIP method
Future<String?>
setDeviceStaticIP(
- String devSn,
- String devMac,
- String devEkey,
- int keyType,
- int staticEnable,
- String staticIP,
- String gateway,
- String mask,
- 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;
}