Consent constructor

Consent({
  1. required bool consented,
  2. String? document,
  3. int? timestamp,
  4. String? location,
  5. String? hardwareId,
})

Implementation

Consent(
    {required this.consented,
    this.document,
    this.timestamp,
    this.location,
    this.hardwareId});