FaresSection constructor

FaresSection({
  1. String? header,
  2. int? index,
  3. Journey1? journey,
  4. List<FareDetails>? rows,
  5. List<Message>? messages,
})

Implementation

FaresSection({
  this.header,
  this.index,
  this.journey,
  this.rows,
  this.messages,
});