AXValueSource constructor

AXValueSource({
  1. required AXValueSourceType type,
  2. AXValue? value,
  3. String? attribute,
  4. AXValue? attributeValue,
  5. bool? superseded,
  6. AXValueNativeSourceType? nativeSource,
  7. AXValue? nativeSourceValue,
  8. bool? invalid,
  9. String? invalidReason,
})

Implementation

AXValueSource({
  required this.type,
  this.value,
  this.attribute,
  this.attributeValue,
  this.superseded,
  this.nativeSource,
  this.nativeSourceValue,
  this.invalid,
  this.invalidReason,
});