NHExpandedText constructor

NHExpandedText({
  1. required String text,
  2. Key? key,
  3. String? showMoreText,
  4. String? showLessText,
  5. double? fontSize,
  6. String? fontFamily,
})

Implementation

NHExpandedText({
  required this.text,
  Key? key,
  this.showMoreText,
  this.showLessText,
  this.fontSize,
  this.fontFamily,
}) : super(key: key);