Car constructor

Car({
  1. String? id,
  2. String? model,
  3. Color? color,
  4. required String noPlate,
  5. String? noChassis,
  6. CarAccess? carAccess,
})

Implementation

Car(
    {this.id,
    this.model,
    this.color,
    required this.noPlate,
    this.noChassis,
    this.carAccess});