InformedConsentInput constructor

InformedConsentInput({
  1. required DateTime signedTimestamp,
  2. String? signedLocation,
  3. String? userID,
  4. required String name,
  5. String? consent,
  6. String? signatureImage,
})

Implementation

InformedConsentInput({
  required this.signedTimestamp,
  this.signedLocation,
  this.userID,
  required this.name,
  this.consent,
  this.signatureImage,
}) : super();