StoryWidget constructor

const StoryWidget({
  1. Key? key,
  2. required Map<String, dynamic> config,
  3. dynamic onTapStoryText(
    1. Map
    )?,
  4. bool isFullScreen = false,
  5. bool showChat = false,
})

Implementation

const StoryWidget({
  Key? key,
  required this.config,
  this.onTapStoryText,
  this.isFullScreen = false,
  this.showChat = false,
}) : super(key: key);