start method
Begins the flow of data between the inputs and outputs connected to the camera instance.
Implementation
Future<void> start() {
assert(!_isDisposed, _isDisposedMessage);
assert(_instance != this, _isNotInitializedMessage);
return configurator.start();
}