LabelCustom constructor

const LabelCustom(
  1. String title, {
  2. TextAlign align = TextAlign.left,
  3. Color color = Colors.white,
  4. double? size,
  5. FontWeight weight = FontWeight.bold,
  6. TextDecoration decoration = TextDecoration.none,
  7. TextOverflow overflow = TextOverflow.clip,
  8. int? line,
  9. Key? key,
})

Implementation

const LabelCustom(this.title, {this.align = TextAlign.left, this.color = Colors.white,
  this.size, this.weight = FontWeight.bold, this.decoration = TextDecoration.none,
  this.overflow = TextOverflow.clip, this.line, Key? key}):super(key:key);