arraysToList<T extends Object> abstract method
Returns a list of T
mapped from child data arrays using map
function.
An optional limit
when provided limits the number of returned objects.
The returned list is immutable.
Other child objects (that cannot be represented as a data array) are omitted from an iterable.
Implementation
List<T> arraysToList<T extends Object>(
T Function(DataArray array) map, {
int? limit,
});