per method

QuantityRate per(
  1. Duration period
)

Creates a QuantityRate with the specified period from this value.

Implementation

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