Text constructor

const Text(
  1. String text, {
  2. TextStyle? style,
  3. TextAlign textAlign = TextAlign.start,
  4. TextOverflow overflow = TextOverflow.ellipsis,
  5. int maxLines = 1,
})

Implementation

const Text(
  this.text, {
  this.style,
  this.textAlign = TextAlign.start,
  this.overflow = TextOverflow.ellipsis,
  this.maxLines = 1,
});