AngularMomentum constructor

AngularMomentum({
  1. dynamic Js,
  2. double uncert = 0.0,
})

Construct an AngularMomentum with joule seconds (Js). Optionally specify a relative standard uncertainty.

Implementation

// ignore: non_constant_identifier_names
AngularMomentum({dynamic Js, double uncert = 0.0}) : super(Js ?? 0.0, AngularMomentum.jouleSecond, uncert);