VolumeFlowRate constructor

VolumeFlowRate({
  1. dynamic cubicMetersPerSecond,
  2. double uncert = 0.0,
})

Constructs a VolumeFlowRate with cubic meters per second. Optionally specify a relative standard uncertainty.

Implementation

VolumeFlowRate({dynamic cubicMetersPerSecond, double uncert = 0.0})
    : super(cubicMetersPerSecond ?? 0.0, VolumeFlowRate.cubicMetersPerSecond,
          uncert);