abs method Null safety

int? abs()

Returns the absolute value of this integer.

Returns null if the int value is null

Implementation

int? abs() => _value?.abs();