EzvizNetDeviceInfo.fromJson constructor

EzvizNetDeviceInfo.fromJson(
  1. Map<String, dynamic> json
)

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'],
  );
}