showStory static method

void showStory(
  1. String storyId,
  2. String slideId
)

Implementation

static void showStory(String storyId, String slideId) {
  try {
    plotlineChannel
        .invokeMethod('showStory', <String, dynamic>{'storyId': storyId, 'slideId': slideId});
  } catch(e) {
    debugPrint("Error in setShouldDisablePlotline: $e");
  }
}