saveVideoToGallery method
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});
}