Interaction constructor

Interaction({
  1. FeaturesetDescriptor? featuresetDescriptor,
  2. required InteractionType interactionType,
  3. bool stopPropagation = true,
  4. String? filter,
  5. double? radius,
})

Implementation

Interaction({
  this.featuresetDescriptor,
  required this.interactionType,
  this.stopPropagation = true,
  this.filter,
  this.radius,
});