InflationRate constructor

const InflationRate({
  1. required f64 total,
  2. required f64 validator,
  3. required f64 foundation,
  4. required u64 epoch,
})

Inflation Rate.

Implementation

const InflationRate({
  required this.total,
  required this.validator,
  required this.foundation,
  required this.epoch,
});