EzvizNetDeviceInfo.fromJson constructor
Implementation
factory EzvizNetDeviceInfo.fromJson(Map<String, dynamic> json) {
return EzvizNetDeviceInfo(
userId: json['userId'],
dChannelCount: json['dChannelCount'],
dStartChannelNo: json['dStartChannelNo'],
channelCount: json['channelCount'],
startChannelNo: json['startChannelNo'],
byDVRType: json['byDVRType'],
);
}