InflationGovernor constructor

const InflationGovernor({
  1. required double initial,
  2. required double terminal,
  3. required double taper,
  4. required double foundation,
  5. required double foundationTerm,
})

Implementation

const InflationGovernor({
  required this.initial,
  required this.terminal,
  required this.taper,
  required this.foundation,
  required this.foundationTerm,
});