notifyRenderers method

void notifyRenderers(
  1. S state
)

Called from any BLoC instance to notify all Renderers about a new UI State of type S

Implementation

void notifyRenderers(S state) => _rendererSubject.add(state);