saveVideoToGallery method

  1. @override
Future<void> saveVideoToGallery({
  1. required String filePath,
})
override

Save the current video to a given path filePath details is passed on to native saveVideoToGallery function of native is invoked

Implementation

@override
Future<void> saveVideoToGallery({required String filePath}) async {
  await _channel.invokeMethod('saveVideoToGallery', {'filePath': filePath});
}