TitleTextWidget constructor

TitleTextWidget({
  1. Key? key,
  2. Color? titleColor,
  3. required String titleText,
  4. double titleSize = 0,
  5. int? titleTextMaxLines = 2,
  6. TextOverflow titleOverflow = TextOverflow.ellipsis,
})

Implementation

TitleTextWidget({
  Key? key,
  this.titleColor,
  required this.titleText,
  this.titleSize = 0,
  this.titleTextMaxLines = 2,
  this.titleOverflow = TextOverflow.ellipsis,
}) : super(key: key);