Definition constructor

const Definition({
  1. required TextMatcher matcher,
  2. ShownTextSelector? shownText,
  3. ActionTextSelector? actionText,
  4. SpanBuilder? builder,
  5. TextStyle? matchStyle,
  6. TextStyle? tapStyle,
  7. TextStyle? hoverStyle,
  8. void onTap(
    1. GestureDetails
    )?,
  9. void onLongPress(
    1. GestureDetails
    )?,
  10. void onGesture(
    1. GestureDetails
    )?,
  11. MouseCursor? mouseCursor,
})

Implementation

const Definition({
  required this.matcher,
  this.shownText,
  this.actionText,
  this.builder,
  this.matchStyle,
  this.tapStyle,
  this.hoverStyle,
  this.onTap,
  this.onLongPress,
  this.onGesture,
  this.mouseCursor,
});