Passenger constructor

Passenger({
  1. String? name,
  2. String? identity,
  3. String? status,
  4. String? rating,
  5. String? email,
  6. String? phone,
  7. String? passengerType,
})

Implementation

Passenger(
    {this.name,
    this.identity,
    this.status,
    this.rating,
    this.email,
    this.phone,
    this.passengerType});