CursorSnapshot constructor

const CursorSnapshot({
  1. required String anchorId,
  2. required int anchorOffset,
  3. String? focusId,
  4. int? focusOffset,
})

Implementation

const CursorSnapshot({
  required this.anchorId,
  required this.anchorOffset,
  this.focusId,
  this.focusOffset,
});