AbstractListState<TListItem> constructor

AbstractListState<TListItem>({
  1. required ResultStatus resultStatus,
  2. required GridResult<TListItem> result,
})

Constructor to initialize AbstractListState.

resultStatus - The current loading status of the result. result - The result object containing the list of items.

Implementation

AbstractListState({required this.resultStatus, required this.result});