build method

  1. @override
Widget build(
  1. BuildContext context,
  2. String data
)

Implementation

@override
Widget build(BuildContext context, String data) {
  return Text(
    data,
    locale: this.locale,
    key: this.key,
    maxLines: this.maxLines,
    overflow: this.overflow,
    semanticsLabel: this.semanticsLabel,
    softWrap: this.softWrap,
    style: this.style,
    textAlign: this.textAlign,
    textDirection: this.textDirection,
    textScaleFactor: this.textScaleFactor,
  );
}