StoryCard constructor

const StoryCard({
  1. Key? key,
  2. Story? story,
  3. double? width,
  4. dynamic onTap(
    1. Map
    )?,
})

Implementation

const StoryCard({
  super.key,
  this.story,
  this.width,
  this.onTap,
});