StoryCard constructor

const StoryCard({
  1. Key? key,
  2. bool isAddStory = false,
  3. UserModel? currentUser,
  4. StoryModel? story,
})

Implementation

const StoryCard({
  Key? key,
  this.isAddStory = false,
  this.currentUser,
  this.story,
}) : super(key: key);