build method
Implementation
@override
Widget build(Context context) {
return Container(
margin: margin,
padding: padding,
child: Text(
text!,
textAlign: textAlign,
style: style ?? Theme.of(context).paragraphStyle,
overflow: TextOverflow.span,
),
);
}