doubleValue property

double doubleValue

Implementation

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

Implementation

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