f method

double f(
  1. int index, [
  2. double defaultValue = 0.0
])

Shorthand for method float.

Implementation

double f(int index, [double defaultValue = 0.0]) =>
    float(index, defaultValue);