squaresRoots property

List<Decimal> squaresRoots

Returns the square roots of this numeric collection.

Implementation

List<Decimal> get squaresRoots => map((n) => n.squareRoot).toList();