shareFilesToSystem method

Future<String> shareFilesToSystem(
  1. String title,
  2. List<String> filePaths
)

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,
  );
}