StoryText constructor

const StoryText({
  1. Key? key,
  2. required String text,
  3. VideoPlayerController? controller,
})

Implementation

const StoryText({
  Key? key,
  required this.text,
  this.controller,
}) : super(key: key);