toDouble property

double? toDouble

Implementation

double? get toDouble {
  return this.doubleValue ??
      this.intValue?.toDouble() ??
      (string == null ? null : double.tryParse(string!));
}