BaseTextWidget constructor

const BaseTextWidget(
  1. String data, {
  2. Color? textColorInDark,
  3. Color? textColorInLight,
  4. int? maxLines,
  5. TextDecoration? decoration,
  6. Key? key,
  7. TextAlign? textAlign,
  8. TextOverflow? overflow,
  9. double? height,
})

Implementation

const BaseTextWidget(
  this.data, {
  this.textColorInDark,
  this.textColorInLight,
  this.maxLines,
  this.decoration,
  super.key,
  this.textAlign,
  this.overflow,
  this.height,
});