AXNodeData constructor

AXNodeData({
  1. required AXNodeId nodeId,
  2. required bool ignored,
  3. List<AXProperty>? ignoredReasons,
  4. AXValue? role,
  5. AXValue? chromeRole,
  6. AXValue? name,
  7. AXValue? description,
  8. AXValue? value,
  9. List<AXProperty>? properties,
  10. AXNodeId? parentId,
  11. List<AXNodeId>? childIds,
  12. BackendNodeId? backendDOMNodeId,
  13. FrameId? frameId,
})

Implementation

AXNodeData(
    {required this.nodeId,
    required this.ignored,
    this.ignoredReasons,
    this.role,
    this.chromeRole,
    this.name,
    this.description,
    this.value,
    this.properties,
    this.parentId,
    this.childIds,
    this.backendDOMNodeId,
    this.frameId});