Area.fromAcres constructor

Area.fromAcres(
  1. Rational acres
)

Creates an Area representing the specified number of acres.

Implementation

factory Area.fromAcres(Rational acres) =>
    Area.fromUnits(AreaUnit.acre, acres);