shareInstagramStory static method

Future<String?> shareInstagramStory({
  1. required String appId,
  2. required String imagePath,
  3. String? backgroundTopColor,
  4. String? backgroundBottomColor,
  5. String? backgroundResourcePath,
  6. String? attributionURL,
})

Implementation

static Future<String?> shareInstagramStory({
  required String appId,
  required String imagePath,
  String? backgroundTopColor,
  String? backgroundBottomColor,
  String? backgroundResourcePath,
  String? attributionURL,
}) async {
  return shareMetaStory(
    appId: appId,
    platform: "shareInstagramStory",
    imagePath: imagePath,
    backgroundTopColor: backgroundTopColor,
    backgroundBottomColor: backgroundBottomColor,
    attributionURL: attributionURL,
    backgroundResourcePath: backgroundResourcePath,
  );
}