Seats constructor

Seats({
  1. String? kind,
  2. int? licensedNumberOfSeats,
  3. int? maximumNumberOfSeats,
  4. int? numberOfSeats,
})

Implementation

Seats({
  this.kind,
  this.licensedNumberOfSeats,
  this.maximumNumberOfSeats,
  this.numberOfSeats,
});