xstyle method

Text xstyle(
  1. TextStyle? style, {
  2. String placeholder = '',
  3. TextAlign? align,
})

Implementation

Text xstyle(TextStyle? style, {String placeholder = '', TextAlign? align}) =>
    Text(
      data ?? placeholder,
      style: style ?? this.style,
      overflow: overflow,
      maxLines: maxLines,
      textAlign: align,
    );