getDoubleValue method

  1. @Deprecated('Use getField(abc).toDoubleValue() instead of getDoubleValue(abc).')
double? getDoubleValue(
  1. String name
)

Returns the value of the field with the given name as a double or null if the field is not a double.

Implementation

@Deprecated(
  'Use getField(abc).toDoubleValue() instead of getDoubleValue(abc).',
)
double? getDoubleValue(String name) => getField(name)?.toDoubleValue();