InteractionGoal constructor

InteractionGoal({
  1. required String type,
  2. List<String> elementIds = const [],
})

Constructs a new InteractionGoal instance.

Requires type to be specified. elementIds is optional and defaults to an empty list.

Implementation

InteractionGoal({required this.type, this.elementIds = const []});