AccessibilityEvent constructor

AccessibilityEvent({
  1. String? mapId,
  2. String? nodeId,
  3. NodeAction? actionType,
  4. DateTime? eventTime,
  5. String? packageName,
  6. EventType? eventType,
  7. String? text,
  8. ContentChangeTypes? contentChangeTypes,
  9. int? movementGranularity,
  10. WindowType? windowType,
  11. bool? isActive,
  12. bool? isFocused,
  13. bool? isClickable,
  14. bool? isScrollable,
  15. bool? isFocusable,
  16. bool? isCheckable,
  17. bool? isLongClickable,
  18. bool? isEditable,
  19. bool? isPip,
  20. ScreenBounds? screenBounds,
  21. List<NodeAction>? actions,
})

Implementation

AccessibilityEvent({
  this.mapId,
  this.nodeId,
  this.actionType,
  this.eventTime,
  this.packageName,
  this.eventType,
  this.text,
  this.contentChangeTypes,
  this.movementGranularity,
  this.windowType,
  this.isActive,
  this.isFocused,
  this.isClickable,
  this.isScrollable,
  this.isFocusable,
  this.isCheckable,
  this.isLongClickable,
  this.isEditable,
  this.isPip,
  this.screenBounds,
  this.actions,
});