Fare constructor
- String name,
- FarePrice? price,
- FareReason reason
Creates a new instance.
nameName of a farepricePrice of a fare. It isnullwhen no price data is available.reasonReason of this cost.
Implementation
Fare(this.name, this.price, this.reason);