intValue property

int intValue

Implementation

int get intValue => decimal.intValue;
void intValue=(int intValue)

Implementation

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