items property

List<T>? items
final

List of items to use to populate rows.

You can either pass all the items of the table included in pagination or only the items to show in the initial page. The other content can then be loaded depending on shown page using the onChangePage callback of this controller.

Implementation

final List<T>? items;