Area.fromSquareInches constructor

Area.fromSquareInches(
  1. Rational squareInches
)

Creates an Area representing the specified number of squareInches.

Implementation

factory Area.fromSquareInches(Rational squareInches) =>
    Area.fromUnits(AreaUnit.squareInch, squareInches);