getTextWidget method

Widget getTextWidget()

Implementation

Widget getTextWidget() {
  return Text(
    text,
    overflow: textOverflow,
    textAlign: textAlign,
    maxLines: maxLines,
    style: style,
  );
}