getFloatArray method

List<double>? getFloatArray(
  1. String key
)

Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.

@param key a String, or null @return a double[] value, or null

Implementation

List<double>? getFloatArray(String key) {
  return getDoubleList(key);
}