LicensePlateResult.fromJson constructor

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

Implementation

factory LicensePlateResult.fromJson(Map<String, dynamic> json) => LicensePlateResult(
    area: areaValues.map[json["area"]],
    country: json["country"],
    plateText: json["plateText"],
    vehicleInspectionFound: json["vehicleInspectionFound"],
    vehicleInspectionMonth: json["vehicleInspectionMonth"],
    vehicleInspectionValid: json["vehicleInspectionValid"],
    vehicleInspectionYear: json["vehicleInspectionYear"],
);