Fare constructor

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

Implementation

Fare({required this.currency, required num value, required String text})
    : super(value: value, text: text);