buildText method
Implementation
@protected
Widget buildText(BuildParameters params) {
return Text(
params.buildProp("format", argument: params.props["value"]),
key: properties.getKey(params.id),
textAlign: params.buildProp("textAlign"),
maxLines: tryParseInt(params.props["maxLines"]),
semanticsLabel: params.props["semanticsLabel"],
softWrap: tryParseBool(params.props["softWrap"]),
overflow: params.buildProp("overflow"),
style: params.buildProp("style"),
);
}