SamplingEventTrigger constructor
SamplingEventTrigger({
- required String measureType,
- 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();