StyledTextContent constructor

const StyledTextContent({
  1. required String text,
  2. double fontSize = 16,
  3. bool bold = false,
  4. bool italic = false,
  5. bool underlined = false,
})

Implementation

const StyledTextContent({
  required this.text,
  this.fontSize = 16,
  this.bold = false,
  this.italic = false,
  this.underlined = false,
}) : super(contentType: type);