captureVideo method

Future<void> captureVideo({
  1. int seconds = 30,
})

Capture the video for given seconds

Implementation

Future<void> captureVideo({int seconds = 30}) async {
  return await broadcater.captureVideo(seconds);
}