setSocketCamEnabled method
Enables or disables SocketCam.
Calls root setProperty with socketCamStatus and SocketCam.enable
or SocketCam.disable.
Implementation
Future<int> setSocketCamEnabled({required int enabled}) {
return _set(
CapturePropertyIds.socketCamStatus,
CapturePropertyTypes.byte,
enabled,
);
}