HubbleStyledText constructor

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

Implementation

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