BuildParagraphWidget constructor

const BuildParagraphWidget({
  1. Key? key,
  2. required String content,
  3. TextStyle? style,
  4. TextAlign? textAlign,
})

A widget that renders an HTML paragraph (

) with customizable styling.

Implementation

const BuildParagraphWidget(
    {super.key, required this.content, this.style, this.textAlign});