buildText method
Implementation
Widget buildText() {
if (valueText != null) {
return FastBody(
enableInteractiveSelection: enableInteractiveSelection,
textColor: valueTextColor,
fontWeight: fontWeight,
textAlign: textAlign,
fontSize: fontSize,
text: valueText!,
);
}
return FastPlaceholder(
enableInteractiveSelection: enableInteractiveSelection,
text: placeholderText,
textAlign: textAlign,
fontSize: fontSize,
);
}