getList<T> method
Converts the element at index to a List of T.
Implementation
List<T> getList<T>(
int index, {
dynamic innerMapKey,
int? innerIndex,
List<T>? defaultValue,
}) => ConvertObjectImpl.toList<T>(
_valueAt(index),
mapKey: innerMapKey,
listIndex: innerIndex,
defaultValue: defaultValue,
debugInfo: {'index': index},
);