DefaultPatternMarkup constructor

DefaultPatternMarkup(
  1. TextStyle style, {
  2. required String pattern,
  3. required String tag,
  4. bool enableLongPress = false,
  5. bool enableTap = true,
  6. PlaceholderAlignment? alignment,
  7. TextBaseline? baseline,
  8. MouseCursor? cursor,
  9. String? tooltip,
  10. int? startCharacter,
  11. bool caseSensitive = true,
})

Implementation

DefaultPatternMarkup(
  this.style, {
  required String pattern,
  required String tag,
  this.enableLongPress = false,
  this.enableTap = true,
  this.alignment,
  this.baseline,
  this.cursor,
  this.tooltip,
  super.startCharacter,
  super.caseSensitive,
}) : super(pattern, tag);