samplingState property
SmartphoneDeploymentExecutorSamplingState?
get
samplingState
The sampling state of this study.
Implementation
SmartphoneDeploymentExecutorSamplingState? get samplingState =>
_samplingState;
set
samplingState
(SmartphoneDeploymentExecutorSamplingState? state)
Implementation
set samplingState(SmartphoneDeploymentExecutorSamplingState? state) {
_samplingState = state;
createEvent(
SmartphoneStudyStatusEvent(
this,
StudyStatusEventTypes.SamplingStateChanged,
samplingState,
),
);
}