Text constructor
Text(
- Object? content, {
- TextStyleToken? style,
- ColorToken? color,
- int? maxLines,
- TextAlign? textAlign,
- TextOverflow? overflow,
- String? name,
- Object? visible,
Implementation
Text(
Object? content, {
this.style,
this.color,
this.maxLines,
this.textAlign,
this.overflow,
String? name,
Object? visible,
}) : content = normalizeExpression(content),
super(name: name, visible: _normalizeVisibility(visible));