samplingState property

The runtime sampling state of this executor.

Implementation

@override
SmartphoneDeploymentExecutorSamplingState get samplingState =>
    SmartphoneDeploymentExecutorSamplingState(
      state,
      configuration!.studyDeploymentId,
      executors
          .whereType<TaskControlExecutor>()
          .map(
            (executor) =>
                executor.samplingState as TaskControlExecutorSamplingState,
          )
          .toList(),
    );