per method

TemperatureRate per(
  1. Duration period
)

Creates a TemperatureRate with the specified period from this value.

Implementation

TemperatureRate per(Duration period) => TemperatureRate._(
      value: this,
      period: period,
    );