StoryModel constructor

StoryModel({
  1. String id = '',
  2. bool isVideoIncluded = false,
  3. double videoDuration = 0,
})

Constructor

Implementation

StoryModel({
  this.id = '',
  bool isVideoIncluded = false,
  double videoDuration = 0,
})  : _videoDuration = videoDuration,
      _isVideoIncluded = isVideoIncluded;