to method

Future<bool> to(
  1. ShareWith shareWith,
  2. String content
)

share text content with social apps shareWith is ShareWith different type of default apps

Implementation

Future<bool> to(ShareWith shareWith, String content) {
  return CustomSocialSharePlatform.instance.to(shareWith, content);
}