deploymentSuccessful method

Future<StudyDeploymentStatus> deploymentSuccessful(
  1. String studyDeploymentId, {
  2. DateTime? deviceDeploymentLastUpdateDate,
})

Mark the study deployment with studyDeploymentId as deployed successfully to this master device (phone), i.e., that the study deployment was loaded on the device and that the necessary runtime is available to run it.

Implementation

Future<StudyDeploymentStatus> deploymentSuccessful(
  String studyDeploymentId, {
  DateTime? deviceDeploymentLastUpdateDate,
}) async =>
    deploymentSuccessfulFor(
      studyDeploymentId,
      thisPhone.roleName,
      deviceDeploymentLastUpdateDate,
    );