initialize method
inherited
Initialize the probe before starting it.
The configuration of the probe is specified in the measure
.
Implementation
void initialize(Measure measure) async {
assert(measure != null, 'Probe cannot be initialized with a null measure.');
_measure = measure;
measure.addMeasureListener(this);
_stateMachine.initialize(measure);
}