logoutNetDevice method
登出网络设备
- Parameters:
- userId: 用户名
Implementation
Future<bool> logoutNetDevice(String userId) async {
final bool result = await _channel.invokeMethod(
EzvizChannelMethods.logoutNetDevice,
{"usrId": userId},
);
return result;
}