stopLiveStream static method

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

Stop live streaming of a given camera

Implementation

static Future<void> stopLiveStream({required String deviceId}) {
  return TuyaCameraPlatform.instance.stopLiveStream(deviceId: deviceId);
}