saveVideoToGallery static method

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

Save the current video to a given path

Implementation

static Future<void> saveVideoToGallery({required String filePath}) {
  return TuyaCameraPlatform.instance.saveVideoToGallery(filePath: filePath);
}