shareToSMS method

Future<String> shareToSMS(
  1. String message
)

Shares a message via SMS on iOS.

message The text message to share.

Returns a String indicating the result of the sharing operation.

Example:

await easySocialShare.iOS.shareToSMS("Hello via SMS!");

Implementation

Future<String> shareToSMS(String message) {
  return EasySocialSharePlatform.instance.shareToSMS(message, filePaths: []);
}