abs property
double
get
abs
Returns the absolute value.
Implementation
double get abs => this == null ? 0.0 : this!.abs();
Returns the absolute value.
double get abs => this == null ? 0.0 : this!.abs();