MarkdownText constructor

const MarkdownText({
  1. Key? key,
  2. required String text,
  3. dynamic openUrl(
    1. String url
    )?,
  4. TextAlign? textAlign,
  5. TextStyle? style,
})

Implementation

const MarkdownText({
  super.key,
  required this.text,
  this.openUrl,
  this.textAlign,
  this.style,
});