stopLiveStream method

  1. @override
Future<void> stopLiveStream({
  1. required String deviceId,
})
override

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});
}