openStory method

Future<void> openStory(
  1. String storyGroupId,
  2. String? storyId
)

This function allows you to open a specific story using storyGroupId and storyId.

Implementation

Future<void> openStory(String storyGroupId, String? storyId) {
  return _methodChannel.invokeMethod(
    'openStory',
    <String, dynamic>{
      'storyGroupId': storyGroupId,
      'storyId': storyId,
    },
  );
}