mutate method

void mutate(
  1. T response
)

Implementation

void mutate(T response) {
  _stateStream.add(AsyncValue.data(response));
  fetchData();
}