stopVideoCapture method

  1. @override
Future<void> stopVideoCapture()
override

Implementation

@override
Future<void> stopVideoCapture() async {
  try {
    await methodChannel.invokeMethod<String>("stopVideoCapture");
  } catch (e) {
    throw Exception("$e [Stop Video Capture]");
  }
}