GemCameraPlayerValue constructor
- required DataSource dataSource,
- required GemCameraPlayerStatus status,
- Camera? camera,
- DataSourceListener? listener,
Constructor for GemCameraPlayerValue.
Parameters
- IN dataSource The input source of the camera stream.
- IN status The current operational status of the camera player.
- IN camera The associated camera instance (optional).
- IN listener The listener for the data source (optional).
Implementation
GemCameraPlayerValue({
required this.dataSource,
required this.status,
this.camera,
DataSourceListener? listener,
}) : _listener = listener;