cameraController property
The live camera controller opened by start, once initialized. Null before start, after stop/dispose, or on backends with no camera preview (e.g. a not-yet-started or platform-unsupported engine). The renderer (M3) reads this to show a live preview; it's not part of the public API.
Implementation
@override
CameraController? get cameraController => started ? _cameraController : null;