UInquiryCacheStatusResponse.fromMap constructor

UInquiryCacheStatusResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UInquiryCacheStatusResponse.fromMap(Map<String, dynamic> json) => UInquiryCacheStatusResponse(
  vehicleViolation: json["vehicleViolation"] == null ? null : UCacheStatusItem.fromMap(json["vehicleViolation"]),
  drivingLicence: json["drivingLicence"] == null ? null : UCacheStatusItem.fromMap(json["drivingLicence"]),
  licencePlate: json["licencePlate"] == null ? null : UCacheStatusItem.fromMap(json["licencePlate"]),
  freewayTolls: json["freewayTolls"] == null ? null : UCacheStatusItem.fromMap(json["freewayTolls"]),
);