toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final consentContentScreenshots = this.consentContentScreenshots;
final consentContentVersion = this.consentContentVersion;
final guardianSignature = this.guardianSignature;
final metadata = this.metadata;
final name = this.name;
final userId = this.userId;
final userSignature = this.userSignature;
final witnessSignature = this.witnessSignature;
return {
'consentContentScreenshots': ?consentContentScreenshots,
'consentContentVersion': ?consentContentVersion,
'guardianSignature': ?guardianSignature,
'metadata': ?metadata,
'name': ?name,
'userId': ?userId,
'userSignature': ?userSignature,
'witnessSignature': ?witnessSignature,
};
}