ParagraphWidget constructor

const ParagraphWidget({
  1. Key? key,
  2. required String paragraph,
  3. required int index,
})

Implementation

const ParagraphWidget({
  Key? key,
  required this.paragraph,
  required this.index,
}) : super(key: key);