stop method

Future<void> stop()

Stops the flow of data between the inputs and outputs connected to the camera instance.

Implementation

Future<void> stop() {
  assert(!_isDisposed, _isDisposedMessage);
  assert(_instance != this, _isNotInitializedMessage);

  return configurator.stop();
}