TextParagraph constructor

const TextParagraph({
  1. Key? key,
  2. required List<Component> children,
})

Implementation

const TextParagraph({
  super.key,
  required this.children,
});