H constructor

const H(
  1. String? data, {
  2. Key? key,
  3. TextStyle? style,
  4. Color? color,
  5. double size = 14,
  6. StrutStyle? strutStyle,
  7. TextAlign? textAlign,
  8. TextDirection? textDirection,
  9. Locale? locale,
  10. bool? softWrap,
  11. TextOverflow? overflow,
  12. double? textScaleFactor,
  13. int? maxLines,
  14. String? semanticsLabel,
  15. TextWidthBasis? textWidthBasis,
  16. TextHeightBehavior? textHeightBehavior,
})

Implementation

const H(
  this.data, {
  Key? key,
  this.style,
  this.color,
  this.size = 14,
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
  this.textHeightBehavior,
}) : super(key: key);