recordVideo method

Future<void> recordVideo(
  1. String filePath
)

Implementation

Future<void> recordVideo(String filePath) async {
  // We need to refresh camera before using it
  // audio channel need to be ready
  CamerawesomePlugin.refresh();

  await CamerawesomePlugin.recordVideo(filePath);
}