onStorylyViewCreated property

StorylyViewCreatedCallback? onStorylyViewCreated
final

This callback function allows you to access StorylyViewController

StorylyView(
  onStorylyViewCreated: onStorylyViewCreated,
)

void onStorylyViewCreated(StorylyViewController storylyViewController) {
  this.storylyViewController = storylyViewController;
}

Implementation

final StorylyViewCreatedCallback? onStorylyViewCreated;