SemanticsNode constructor

const SemanticsNode({
  1. required int id,
  2. required String role,
  3. required String label,
  4. required List<String> state,
  5. required List<String> actions,
  6. required List<int> rect,
  7. String identifier = '',
  8. String value = '',
  9. String hint = '',
  10. Map<String, int>? scroll,
})

Implementation

const SemanticsNode({
  required this.id,
  required this.role,
  required this.label,
  required this.state,
  required this.actions,
  required this.rect,
  this.identifier = '',
  this.value = '',
  this.hint = '',
  this.scroll,
});