StudyDeploymentStatus constructor

StudyDeploymentStatus({
  1. required String studyDeploymentId,
  2. List<DeviceDeploymentStatus> deviceStatusList = const [],
})

Implementation

StudyDeploymentStatus({
  required this.studyDeploymentId,
  this.deviceStatusList = const [],
}) : super() {
  createdOn = DateTime.now();
}