getNum method
Converts the element at index to a num.
Implementation
num getNum(
int index, {
dynamic innerMapKey,
int? innerIndex,
String? format,
String? locale,
num? defaultValue,
ElementConverter<num>? converter,
}) => ConvertObjectImpl.toNum(
_valueAt(index),
mapKey: innerMapKey,
listIndex: innerIndex,
format: format,
locale: locale,
defaultValue: defaultValue,
converter: converter,
debugInfo: {'index': index},
);