dispose method

Future<void> dispose()

Close the input and resize stream controllers.

Implementation

Future<void> dispose() async {
  await _inputController.close();
  await _resizeController.close();
  await _interruptController.close();
}