close method

Future close()

Close the controller.

Implementation

Future<dynamic> close() {
  safeUnawaited(_inputController.close());
  return _completer.future.then((value) => _outputController.close());
}