saveMultipleFiles method
Saves multiple files using platform-specific implementation.
Returns a list of saved file paths (or identifiers) for each file. On iOS the paths are temporary staging locations; on Web they indicate that a browser download was triggered.
dataList: List of file data in bytes.
fileNameList: List of file names with extensions.
mimeTypeList: List of corresponding MIME types.
Implementation
Future<List<String>> saveMultipleFiles({
required List<Uint8List> dataList,
required List<String> fileNameList,
required List<String> mimeTypeList,
}) {
throw UnimplementedError('saveMultipleFiles() has not been implemented.');
}