VINParsedResult constructor

VINParsedResult({
  1. String vin = '',
  2. String worldManufacturerID = '',
  3. String vehicleDescriptorSection = '',
  4. String vehicleIdentifierSection = '',
  5. String? countryCode,
  6. String vehicleAttributes = '',
  7. int modelYear = 0,
  8. int plantCode = 0,
  9. String sequentialNumber = '',
})

Implementation

VINParsedResult({
  this.vin = '',
  this.worldManufacturerID = '',
  this.vehicleDescriptorSection = '',
  this.vehicleIdentifierSection = '',
  this.countryCode,
  this.vehicleAttributes = '',
  this.modelYear = 0,
  this.plantCode = 0,
  this.sequentialNumber = '',
}) : super(ParsedResultType.vin);