Add constructor
      
      Add(
    
- StudyProtocol protocol, [
- String? versionTag
Create a new add request.
If versionTag is null the version tag is current timestamp.
Implementation
Add(this.protocol, [this.versionTag]) : super() {
  versionTag ??= DateTime.now().toUtc().toString();
}