LinkedDataProof constructor

LinkedDataProof({
  1. required String type,
  2. required String proofPurpose,
  3. required String verificationMethod,
  4. required DateTime created,
  5. String? proofValue,
  6. String? challenge,
  7. String? jws,
  8. String? domain,
})

Implementation

LinkedDataProof(
    {required this.type,
    required this.proofPurpose,
    required this.verificationMethod,
    required this.created,
    this.proofValue,
    this.challenge,
    this.jws,
    this.domain});