TextCommandResult constructor
const
TextCommandResult({
- List<
String> ? graphemes, - required int cursorOffset,
- int? selectionBaseOffset,
- int? selectionExtentOffset,
- TextDocument? document,
- TextDocumentChange? documentChange,
- bool changed = true,
Implementation
const TextCommandResult({
List<String>? graphemes,
required this.cursorOffset,
this.selectionBaseOffset,
this.selectionExtentOffset,
this.document,
this.documentChange,
this.changed = true,
}) : _graphemes = graphemes;