onRefresh method

  1. @override
FutureOr<List<User>> onRefresh()
override

Returns the new state.

This function is called in an interval of refreshRate.

The value returned by this function will be set as the new state if it is different from the current state.

Errors thrown by this function will not be caught.

Implementation

@override
FutureOr<List<User>> onRefresh() {
  return userDataSource.fetchAllUsers();
}