shareToFacebookStory method

Future<String> shareToFacebookStory(
  1. String appId, {
  2. String? stickerImage,
  3. String? backgroundImage,
  4. String? backgroundVideo,
  5. String? backgroundTopColor,
  6. String? backgroundBottomColor,
  7. String? attributionURL,
})

Implementation

Future<String> shareToFacebookStory(String appId,
    {String? stickerImage,
    String? backgroundImage,
    String? backgroundVideo,
    String? backgroundTopColor,
    String? backgroundBottomColor,
    String? attributionURL}) {
  return AppinioSocialSharePlatform.instance.shareToFacebookStory(appId,
      stickerImage: stickerImage,
      backgroundImage: backgroundImage,
      backgroundVideo: backgroundVideo,
      backgroundTopColor: backgroundTopColor,
      backgroundBottomColor: backgroundBottomColor,
      attributionURL: attributionURL);
}