SearchKeywordText constructor

const SearchKeywordText({
  1. Key? key,
  2. required String text,
  3. String keyText = "",
  4. TextStyle? style,
  5. TextStyle? keyStyle,
  6. TextAlign textAlign = TextAlign.start,
  7. TextDirection? textDirection,
  8. bool softWrap = true,
  9. TextOverflow overflow = TextOverflow.clip,
  10. double textScaleFactor = 1.0,
  11. int? maxLines,
})

Implementation

const SearchKeywordText({
  Key? key,
  required this.text,
  this.keyText = "",
  this.style,
  this.keyStyle,
  this.textAlign = TextAlign.start,
  this.textDirection,
  this.softWrap = true,
  this.overflow = TextOverflow.clip,
  this.textScaleFactor = 1.0,
  this.maxLines,
}) : super(key: key);