loadVideo method

Future<void> loadVideo({
  1. required File videoFile,
})

Loads a video using the path provided.

Returns the loaded video file.

Implementation

Future<void> loadVideo({required File videoFile}) async {
  currentVideoFile = videoFile;
  if (videoFile.existsSync()) {
    _videoPlayerController = VideoPlayerController.file(currentVideoFile!);
    await _videoPlayerController!.initialize().then((_) {
      _controller.add(TrimmerEvent.initialized);
    });
  }
}