InformedConsentInput constructor
InformedConsentInput({})
Implementation
InformedConsentInput({
DateTime? signedTimestamp,
this.signedLocation,
required this.userId,
required this.name,
required this.consent,
required this.signatureImage,
}) : super() {
this.signedTimestamp = (signedTimestamp ?? DateTime.now()).toUtc();
}