startLiveStream method
Start live streaming of a given camera
deviceId details is passed on to native
startLiveStream function of native is invoked
Implementation
@override
Future<void> startLiveStream({required String deviceId}) async {
await _channel.invokeMethod('startLiveStream', {'deviceId': deviceId});
}