error property

dynamic error

The current error, if any. Initially null.

Implementation

dynamic get error => value.error;
void error=(dynamic newError)

Implementation

set error(dynamic newError) {
  value = PagingState<PageKeyType, ItemType>(
    error: newError,
    itemList: itemList,
    nextPageKey: nextPageKey,
  );
}