RPConsentSignature.withIdentifier constructor

RPConsentSignature.withIdentifier(String identifier)

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

Implementation

RPConsentSignature.withIdentifier(String identifier) {
  this._identifier = identifier;
  this._requiresName = true;
  this._requiresSignatureImage = true;
}