sharePhotoToFacebookStory static method

Future<SocialShareStatus> sharePhotoToFacebookStory({
  1. required String appID,
  2. required String filePath,
  3. required String backgroundTopColor,
  4. required String backgroundBottomColor,
})

Implementation

static Future<SocialShareStatus> sharePhotoToFacebookStory({
  required String appID,
  required String filePath,
  required String backgroundTopColor,
  required String backgroundBottomColor,
}) =>
    SocialSharePlatform.instance.sharePhotoToFacebookStory(
      appID: appID,
      filePath: filePath,
      backgroundTopColor: backgroundTopColor,
      backgroundBottomColor: backgroundBottomColor,
    );