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