ResponsiveText constructor

const ResponsiveText(
  1. String text, {
  2. Key? key,
  3. double? mobileFontSize,
  4. double? tabletFontSize,
  5. double? desktopFontSize,
  6. TextStyle? style,
  7. TextAlign? textAlign,
  8. int? maxLines,
  9. TextOverflow? overflow,
})

Implementation

const ResponsiveText(
  this.text, {
  super.key,
  this.mobileFontSize,
  this.tabletFontSize,
  this.desktopFontSize,
  this.style,
  this.textAlign,
  this.maxLines,
  this.overflow,
});