HubbleHTMLText constructor

const HubbleHTMLText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. int? maxLines,
})

Implementation

const HubbleHTMLText({
  super.key,
  required this.text,
  this.style,
  this.textAlign,
  this.maxLines,
});