StoriesViewWidget constructor

StoriesViewWidget({
  1. Key? key,
  2. required int widgetId,
  3. List<String>? segments,
  4. Map<String, String>? queryParams,
  5. String? customerId,
  6. List<StorifyMeDynamicData>? dynamicData,
  7. Iterable<StorifyMeAd>? customAds,
  8. StorifyMeStoryPlaybackOptions? playbackOptions,
  9. StorifyMeStoryAudioOptions? audioOptions,
  10. StorifyMeURLPresentationOptions? urlPresentationOptions,
  11. int? storyTitleHorizontalPadding,
  12. double estimatedHeight = 180.0,
  13. bool showLoadingActivityIndicator = false,
  14. StorifyMeAutoLayoutBehavior? autoLayoutBehavior,
  15. StorifyMeDirection? direction,
  16. String? language,
})

Implementation

StoriesViewWidget(
    {Key? key,
    required this.widgetId,
    this.segments,
    this.queryParams,
    this.customerId,
    this.dynamicData,
    this.customAds,
    this.playbackOptions,
    this.audioOptions,
    this.urlPresentationOptions,
    this.storyTitleHorizontalPadding,
    this.estimatedHeight = 180.0,
    this.showLoadingActivityIndicator = false,
    this.autoLayoutBehavior,
    this.direction,
    this.language})
    : super(key: key ?? Key('storifyme-$widgetId-${segments?.join(",")}'));