CalibrationMachineResponse.fromJson constructor

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

Implementation

CalibrationMachineResponse.fromJson(Map<String, dynamic> json) {
  data = json['data'] != null
      ? new CalibrationMachineData.fromJson(json['data'])
      : null;
}