shareToSystem method

Future<String> shareToSystem(
  1. String title,
  2. String message,
  3. String? filePath
)

Shares content using Android's system sharing dialog.

title Title for the sharing dialog. message The text message to share. filePath Optional path to a file to share.

Returns a String indicating the result of the sharing operation.

Implementation

Future<String> shareToSystem(String title, String message, String? filePath) {
  return EasySocialSharePlatform.instance.shareToSystemAndroid(
    title,
    message,
    filePath,
  );
}