doubleValue property

double get doubleValue

Implementation

double get doubleValue => decimal.doubleValue;
set doubleValue (double doubleValue)

Implementation

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