shareFilesToSMS method

Future<String> shareFilesToSMS(
  1. List<String> filePaths
)

Shares multiple files via SMS on Android.

filePaths List of file paths to share.

Returns a String indicating the result of the sharing operation.

Implementation

Future<String> shareFilesToSMS(List<String> filePaths) {
  return EasySocialSharePlatform.instance.shareToSMSAndroidMultifiles(
    filePaths,
  );
}