menu
realm_dart package
documentation
realm.dart
Decimal128
abs method
abs method
dark_mode
light_mode
abs
method
Decimal128
abs
(
)
Returns the absolute value of
this
.
Implementation
Decimal128 abs() => this < zero ? -this : this;
realm_dart package
documentation
realm
Decimal128
abs method
Decimal128 class