stopImageStream method

Future<void> stopImageStream()

Implementation

Future<void> stopImageStream() async {
  if (!value.isStreamingFrames) return;
  await _set("stopImageStream", const <String, Object?>{});
  _emit(value.copyWith(isStreamingFrames: false));
}