MarkupText constructor

const MarkupText({
  1. Key? key,
  2. required String text,
  3. List<Mark> marks = const [],
  4. TextStyle? textStyle,
  5. TextStyle? marksStyle,
})

Implementation

const MarkupText({
  super.key,
  required this.text,
  this.marks = const [],
  this.textStyle,
  this.marksStyle,
});