RPConsentReviewStep constructor
RPConsentReviewStep({
- required String identifier,
- required String title,
- String? text,
- required RPConsentDocument consentDocument,
- String? reasonForConsent,
Returns an initialized Consent Review Step
If the consent document doesn't have any signatures then no signature collection stage is part of the flow. On how to specify a signature go to RPConsentSignature.
Implementation
RPConsentReviewStep({
required super.identifier,
required super.title,
super.text,
required this.consentDocument,
this.reasonForConsent,
});