Fare constructor

const Fare({
  1. String? text,
  2. String? currency,
  3. num? value,
})

Implementation

const Fare({
  this.text,
  this.currency,
  this.value,
});