TextCursorCommandResult constructor

const TextCursorCommandResult({
  1. required int cursorOffset,
  2. int? selectionBaseOffset,
  3. int? selectionExtentOffset,
  4. bool changed = true,
})

Implementation

const TextCursorCommandResult({
  required this.cursorOffset,
  this.selectionBaseOffset,
  this.selectionExtentOffset,
  this.changed = true,
});