WireText constructor

const WireText(
  1. String _text, {
  2. Key? key,
  3. required TextStyle textStyle,
  4. TextAlign? textAlignment,
  5. int maxLines = 1,
  6. EdgeInsetsGeometry? margin,
  7. StrutStyle? strutStyle,
  8. double minFontSize = 9,
  9. TextDirection? textDirection,
})

Implementation

const WireText(this._text,{Key? key,
 required this.textStyle,
 this.textAlignment,
 this.maxLines = 1,
 this.margin,
 this.strutStyle,
 this.minFontSize = 9,
 this.textDirection
  }) : super(key: key);