RPConsentReviewStep constructor

RPConsentReviewStep({
  1. required String identifier,
  2. required String title,
  3. String? text,
  4. required RPConsentDocument consentDocument,
  5. 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,
});