Selection.constructor constructor

Selection.constructor({
  1. Node? anchorNode,
  2. int? anchorOffset,
  3. Node? baseNode,
  4. int? baseOffset,
  5. Node? extentNode,
  6. int? extentOffset,
  7. Node? focusNode,
  8. int? focusOffset,
  9. bool? isCollapsed,
  10. int? rangeCount,
  11. String? type,
})

Implementation

Selection.constructor({
  this.anchorNode,
  this.anchorOffset,
  this.baseNode,
  this.baseOffset,
  this.extentNode,
  this.extentOffset,
  this.focusNode,
  this.focusOffset,
  this.isCollapsed,
  this.rangeCount,
  this.type,
});