getDouble method

double? getDouble(
  1. String name
)

Gets a Double attribute value by key. Returns null if the key doesn't exist or if the value is not a Double.

Implementation

double? getDouble(String name) => _getTyped<double>(name);