items property
List of the items fetched from the paginations.
Implementation
List<T> get items => paginations
.map((e) => e.p.items.values.toList())
.reduce((value, e) => value..addAll(e));
List of the items fetched from the paginations.
List<T> get items => paginations
.map((e) => e.p.items.values.toList())
.reduce((value, e) => value..addAll(e));