OfferCredential constructor

OfferCredential({
  1. String? id,
  2. String? replacementId,
  3. String? goalCode,
  4. String? comment,
  5. PreviewCredential? credentialPreview,
  6. List<LdProofVcDetail>? detail,
  7. CredentialManifestAttachment? credentialManifest,
  8. VerifiablePresentation? fulfillment,
  9. String? replyUrl,
  10. List<String>? replyTo,
  11. String? parentThreadId,
  12. String? threadId,
  13. String? from,
  14. List<String>? to,
  15. DateTime? createdTime,
  16. DateTime? expiresTime,
  17. bool pleaseAck = false,
  18. FromPriorJWT? fromPrior,
  19. Map<String, dynamic>? additionalHeaders,
  20. WebRedirect? webRedirect,
  21. ReturnRouteValue? returnRoute,
  22. DidcommMessageTyp? typ,
})

Implementation

OfferCredential(
    {String? id,
    this.replacementId,
    this.goalCode,
    this.comment,
    this.credentialPreview,
    this.detail,
    this.credentialManifest,
    this.fulfillment,
    super.replyUrl,
    super.replyTo,
    super.parentThreadId,
    super.threadId,
    super.from,
    List<String>? super.to,
    super.createdTime,
    super.expiresTime,
    super.pleaseAck,
    super.fromPrior,
    super.additionalHeaders,
    super.webRedirect,
    super.returnRoute,
    super.typ})
    : super(
          type: DidcommMessages.offerCredential,
          id: id ?? Uuid().v4(),
          body: {}) {
  if (comment != null) body['comment'] = comment;
  if (goalCode != null) body['goal_code'] = goalCode;
  if (replacementId != null) body['replacement_id'] = replacementId;
  if (credentialPreview != null) {
    body['credential_preview'] = credentialPreview!.toJson();
  }
  if (detail != null) {
    attachments = [];
    for (var a in detail!) {
      attachments!.add(Attachment(
          data: AttachmentData(json: a.toJson()),
          id: Uuid().v4(),
          format: AttachmentFormat.ldProofVcDetail,
          mediaType: 'application/json'));
    }
  }
  if (credentialManifest != null) {
    attachments ??= [];
    attachments!.add(Attachment(
        data: AttachmentData(json: credentialManifest!.toJson()),
        id: Uuid().v4(),
        format: AttachmentFormat.credentialManifest,
        mediaType: 'application/json'));
  }

  if (fulfillment != null) {
    attachments ??= [];
    attachments!.add(Attachment(
        data: AttachmentData(json: fulfillment!.toJson()),
        id: Uuid().v4(),
        format: AttachmentFormat.credentialFulfillment,
        mediaType: 'application/json'));
  }
}