updateCache method

void updateCache(
  1. T? data
)

Implementation

void updateCache(T? data) {
  _subject.add(_Data(data: data, error: null));
}