intValue property
int
get
intValue
Implementation
int get intValue => decimal.intValue;
set
intValue
(int intValue)
Implementation
set intValue(int intValue) {
decimal = Decimal(
precision: (validator as NewDecimalValidator).precision,
intValue: intValue,
);
}