NiceResponsiveText constructor

const NiceResponsiveText({
  1. Key? key,
  2. required String text,
  3. TextStyle? styleXs,
  4. TextStyle? styleSm,
  5. TextStyle? styleMd,
  6. TextStyle? styleLg,
  7. TextStyle? styleXl,
  8. TextStyle? styleXxl,
  9. TextAlign? textAlign,
  10. int? maxLines,
  11. TextOverflow? overflow,
})

Implementation

const NiceResponsiveText({
  super.key,
  required this.text,
  this.styleXs,
  this.styleSm,
  this.styleMd,
  this.styleLg,
  this.styleXl,
  this.styleXxl,
  this.textAlign,
  this.maxLines,
  this.overflow,
});