GenUiSemanticNode constructor

const GenUiSemanticNode({
  1. required String role,
  2. String name = '',
  3. String value = '',
  4. String tooltip = '',
  5. Map<String, bool> state = const <String, bool>{},
  6. List<String> actions = const <String>[],
})

Creates a GenUiSemanticNode.

Implementation

const GenUiSemanticNode({
  required this.role,
  this.name = '',
  this.value = '',
  this.tooltip = '',
  this.state = const <String, bool>{},
  this.actions = const <String>[],
});