Text constructor
const
Text(
- String text, {
- TextStyle? style,
- TextAlign textAlign = TextAlign.start,
- TextOverflow overflow = TextOverflow.ellipsis,
- int maxLines = 1,
Implementation
const Text(
this.text, {
this.style,
this.textAlign = TextAlign.start,
this.overflow = TextOverflow.ellipsis,
this.maxLines = 1,
});