CarPart constructor

CarPart({
  1. required String carPartClassName,
  2. required String? carPartLocation,
  3. required num? carPartScore,
  4. required List carPartBoxes,
  5. required String carPartMaskPath,
  6. required String carPartMaskUrl,
  7. required bool carPartIsPart,
  8. required List<DamageModel> carPartDamages,
  9. required Color color,
  10. required String uuid,
})

Implementation

CarPart({
  required this.carPartClassName,
  required this.carPartLocation,
  required this.carPartScore,
  required this.carPartBoxes,
  required this.carPartMaskPath,
  required this.carPartMaskUrl,
  required this.carPartIsPart,
  required this.carPartDamages,
  required this.color,
  required this.uuid,
});