StoryItem constructor

StoryItem(
  1. Widget view, {
  2. Duration duration = const Duration(seconds: 3),
  3. bool shown = false,
})

Implementation

StoryItem(
  this.view, {
  this.duration = const Duration(seconds: 3),
  this.shown = false,
});