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