exitSnipMode method

Future<void> exitSnipMode()

Exits snip mode, stopping the screenshot capture.

Example:

await controller.exitSnipMode();

Implementation

Future<void> exitSnipMode() async {
  await _channel.invokeMethod('exit_snip_mode');
}