StoryItem constructor

const StoryItem({
  1. required String url,
  2. List? viewers,
  3. required StoryItemType type,
  4. int? duration = 3,
})

Constructs a new StoryItem instance with the given url, viewers, type and duration.

Implementation

const StoryItem(
    {required this.url, this.viewers, required this.type, this.duration = 3});