close method

  1. @mustCallSuper
Future<void> close()

Closes the instance. This method should be called when the instance is no longer needed. Once close is called, the instance can no longer be used.

Implementation

@mustCallSuper
Future<void> close() async {
  // ignore: invalid_use_of_protected_member
  Bloc.observer.onClose(this);
  await _stateController.close();
}