RefEntry constructor
const
RefEntry({
- required Rect rect,
- required Element element,
- required String groupId,
- required bool isTextField,
- SemanticsNode? node,
- 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,
});