SamplingEventTrigger constructor

SamplingEventTrigger({
  1. required String measureType,
  2. Data? triggerCondition,
})

Create a trigger that triggers when a measure of measureType is collected, and checks the triggerCondition to determine if it should trigger.

Implementation

SamplingEventTrigger({required this.measureType, this.triggerCondition})
  : super();