per method

TimeRate per(
  1. Duration period
)

Creates a TimeRate with the specified period from this value.

Implementation

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