Decimal128.fromInt constructor
Decimal128.fromInt(
- int value
Converts a int
into a Decimal128.
Implementation
factory Decimal128.fromInt(int value) {
return Decimal128._(_realmLib.realm_dart_decimal128_from_int64(value));
}