Area.fromSquareFeet constructor

Area.fromSquareFeet(
  1. Rational squareFeet
)

Creates an Area representing the specified number of squareFeet.

Implementation

factory Area.fromSquareFeet(Rational squareFeet) =>
    Area.fromUnits(AreaUnit.squareFoot, squareFeet);