pause static method

Future<void> pause()

Stop video recording (blacks out the video, but does not stop the event/data capture)

Implementation

static Future<void> pause() async {
  await _channel?.invokeMethod('pause', <String, dynamic>{});
}