shareFilesToSystem method
Shares multiple files using Android's system sharing dialog.
title Title for the sharing dialog.
filePaths List of file paths to share.
Returns a String indicating the result of the sharing operation.
Implementation
Future<String> shareFilesToSystem(String title, List<String> filePaths) {
return EasySocialSharePlatform.instance.shareToSystemAndroidMultifiles(
title,
filePaths,
);
}