TextContent constructor

const TextContent({
  1. Key? key,
  2. required String text,
  3. String? highlightText,
  4. TextStyle? style,
  5. Color? highlightColor,
  6. required TextStyle highlightStyle,
  7. required TextStyle focusStyle,
  8. bool ignoreCase = true,
  9. required Color focusColor,
  10. required List<GlobalKey<State<StatefulWidget>>> keys,
  11. required int focusKeyIndex,
})

Implementation

const TextContent({
  Key? key,
  required this.text,
  this.highlightText,
  this.style,
  this.highlightColor,
  required this.highlightStyle,
  required this.focusStyle,
  this.ignoreCase = true,
  required this.focusColor,
  required this.keys,
  required this.focusKeyIndex,
}) : super(key: key);