abs property

Returns the absolute values of this numeric collection.

Implementation

List<DynamicNumber<dynamic>> get abs =>
    map((n) => n.abs() as DynamicNumber<dynamic>).toList();