getAllZipFiles method

Future<List<String>> getAllZipFiles()

Retrieves paths of all zip archive files on the device.

Returns a List of absolute file paths to zip files

Example:

final zipFiles = await MediaManagerPlatform.instance.getAllZipFiles();

Implementation

Future<List<String>> getAllZipFiles() {
  throw UnimplementedError('getAllZipFiles() has not been implemented.');
}