EzvizDeviceInfo.fromJson constructor
Implementation
factory EzvizDeviceInfo.fromJson(Map<String, dynamic> json) {
return EzvizDeviceInfo(
deviceSerial: json['deviceSerial'],
deviceName: json['deviceName'],
isSupportPTZ: json['isSupportPTZ'],
cameraNum: json['cameraNum'],
);
}