saveFileToGallery function

Future<String?> saveFileToGallery(
  1. String file
)

Save the PNG,JPG,JPEG image or video located at file to the local device media gallery.

Implementation

Future<String?> saveFileToGallery(String file) async {
  if (!supportPlatformMobile) return null;
  return await curiosityChannel.invokeMethod('saveFileToGallery', file);
}