getAllZipFiles method
Retrieves paths of all zip files on device. Returns List< String> of absolute file paths. Example:
List<String> zips = await MethodChannelMediaManager().getAllZipFiles();
Implementation
@override
Future<List<String>> getAllZipFiles() async {
final List<dynamic> result = await methodChannel.invokeMethod(
'getAllZipFiles',
);
return result.cast<String>();
}