getText method
Implementation
Widget getText() {
return Text(
text,
textAlign: textAlign,
overflow: TextOverflow.ellipsis,
maxLines: maxLines,
style: TextStyle(
fontSize: fontSize,
fontWeight: fontWeight,
height: lineHeight,
color: getTextColor(),
),
);
}