LabelConfig constructor

LabelConfig({
  1. String? title,
  2. ColorModel? titleFontColor,
  3. double? titleFontSize,
  4. FontWeight? titleFontWeight,
  5. int maxLines = 1,
})

Implementation

LabelConfig({
  this.title,
  this.titleFontColor,
  this.titleFontSize,
  this.titleFontWeight,
  this.maxLines = 1,
});