close method

dynamic close()

Closes the StreamController for the StateBloc. No further items will be emitted by the StateBloc Stream or Future interfaces.

Implementation

close() {
  _controller.close();
}