RPConsentSignature constructor

RPConsentSignature({
  1. required String identifier,
  2. String? title,
  3. bool requiresName = true,
  4. bool requiresSignatureImage = true,
})

The default constructor. Returns a signature where both the name and the signature image is required

Implementation

RPConsentSignature({
  required this.identifier,
  this.title,
  this.requiresName = true,
  this.requiresSignatureImage = true,
});