LabelCustom constructor

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

Implementation

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