getDouble method

double getDouble(
  1. int index, {
  2. dynamic innerMapKey,
  3. int? innerIndex,
  4. String? format,
  5. String? locale,
  6. double? defaultValue,
  7. ElementConverter<double>? converter,
})

Converts the element at index to a double.

Implementation

double getDouble(
  int index, {
  dynamic innerMapKey,
  int? innerIndex,
  String? format,
  String? locale,
  double? defaultValue,
  ElementConverter<double>? converter,
}) => ConvertObjectImpl.toDouble(
  _valueAt(index),
  mapKey: innerMapKey,
  listIndex: innerIndex,
  format: format,
  locale: locale,
  defaultValue: defaultValue,
  converter: converter,
  debugInfo: {'index': index},
);