LicensePlateResult constructor

LicensePlateResult({
  1. Area? area,
  2. String? country,
  3. String? plateText,
  4. bool? vehicleInspectionFound,
  5. String? vehicleInspectionMonth,
  6. bool? vehicleInspectionValid,
  7. String? vehicleInspectionYear,
})

Implementation

LicensePlateResult({
  this.area,
  this.country,
  this.plateText,
  this.vehicleInspectionFound,
  this.vehicleInspectionMonth,
  this.vehicleInspectionValid,
  this.vehicleInspectionYear,
});