XExpressionText constructor

const XExpressionText(
  1. String _text, {
  2. Key? key,
  3. required TextStyle style,
  4. int maxLines = -1,
  5. TextOverflow? overflow,
})

Implementation

const XExpressionText(
  this._text, {
  Key? key,
  required this.style,
  this.maxLines = -1,
  this.overflow,
}) : super(key: key);