studyDescription property

  1. @JsonKey(includeFromJson: false, includeToJson: false)
StudyDescription? studyDescription

The description of this study protocol containing the title, description, purpose, and the responsible researcher for this study.

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
StudyDescription? get studyDescription => _data.studyDescription;
void studyDescription=(StudyDescription? description)

Implementation

set studyDescription(StudyDescription? description) =>
    _data.studyDescription = description;