RefEntry constructor

const RefEntry({
  1. required Rect rect,
  2. required Element element,
  3. required String groupId,
  4. required bool isTextField,
  5. SemanticsNode? node,
  6. RenderObject? renderObject,
})

Creates a RefEntry from its component parts. All non-nullable fields must be provided; the registry never mutates an entry after registration.

Implementation

const RefEntry({
  required this.rect,
  required this.element,
  required this.groupId,
  required this.isTextField,
  this.node,
  this.renderObject,
});