SmartphoneStudy constructor

SmartphoneStudy({
  1. String? studyId,
  2. required String studyDeploymentId,
  3. required String deviceRoleName,
  4. String? participantId,
  5. String? participantRoleName,
  6. DateTime? createdOn,
  7. StudyDeploymentStatus? deploymentStatus,
  8. SmartphoneDeployment? deployment,
})

Create a SmartphoneStudy.

Implementation

SmartphoneStudy({
  this.studyId,
  required String studyDeploymentId,
  required String deviceRoleName,
  this.participantId,
  this.participantRoleName,
  DateTime? createdOn,
  StudyDeploymentStatus? deploymentStatus,
  SmartphoneDeployment? deployment,
}) : super(
       studyDeploymentId,
       deviceRoleName,
       createdOn,
       deploymentStatus,
       deployment,
     );