abs method Null safety
Returns the absolute value of this integer.
Returns null if the int value is null
Implementation
int? abs() => _value?.abs();
Returns the absolute value of this integer.
Returns null if the int value is null
int? abs() => _value?.abs();