Length.fromThous constructor

Length.fromThous(
  1. Rational thous
)

Creates a Length representing the specified number of thous.

Implementation

factory Length.fromThous(Rational thous) =>
    Length.fromUnits(LengthUnit.thou, thous);