arraysToList<T extends Object> abstract method

List<T> arraysToList<T extends Object>(
  1. T map(
    1. DataArray array
    ), {
  2. int? limit,
})

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,
});