RPConsentReviewStep constructor

RPConsentReviewStep({
  1. required String identifier,
  2. required RPConsentDocument consentDocument,
  3. String? reasonForConsent,
  4. String? text,
})

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 String identifier,
    required this.consentDocument,
    this.reasonForConsent,
    this.text})
    : super(identifier: identifier, title: '');