TextDropStyle constructor

const TextDropStyle({
  1. int? maxLines,
  2. TextOverflow overflow = TextOverflow.ellipsis,
  3. FontWeight fontWeight = FontWeight.w500,
  4. double fontSize = 14,
  5. Color? textColor,
})

Implementation

const TextDropStyle({
  this.maxLines,
  this.overflow = TextOverflow.ellipsis,
  this.fontWeight = FontWeight.w500,
  this.fontSize = 14,
  this.textColor,
});