per method

VolumeRate per(
  1. Duration period
)

Creates a VolumeRate with the specified period from this value.

Implementation

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