SmartphoneStudyProtocol constructor
SmartphoneStudyProtocol({
- required String ownerId,
- required String name,
- StudyDescription? studyDescription,
- DataEndPoint? dataEndPoint,
- Map<
String, dynamic> ? applicationData,
Create a new SmartphoneStudyProtocol.
Implementation
SmartphoneStudyProtocol({
required super.ownerId,
required super.name,
this.studyDescription,
this.dataEndPoint,
this.applicationData,
}) : super(
description: studyDescription?.description ?? '',
);