setAutoVideoRecording static method

Future<void> setAutoVideoRecording(
  1. bool enabled
)

Sets if automatic video recording is enabled.

Implementation

static Future<void> setAutoVideoRecording(bool enabled) async {
  await _channel.invokeMethod('setAutoVideoRecording', {
    'enabled': enabled,
  });
}