abs property

List<double> abs

Returns the absolute values of this numeric collection.

Implementation

List<double> get abs => map((n) => n.abs()).toList();