ParticipantData constructor

ParticipantData({
  1. required String studyDeploymentId,
  2. Map<String, Data?> common = const {},
  3. List<RoleData> roles = const [],
})

Implementation

ParticipantData({
  required this.studyDeploymentId,
  this.common = const {},
  this.roles = const [],
}) : super();