store abstract method

Future store(
  1. String? correlationId,
  2. String key,
  3. CredentialParams credential
)

Stores credential parameters into the store.

  • correlationId (optional) transaction id to trace execution through call chain.
  • key a key to uniquely identify the credential.
  • credential a credential to be stored. Return Future that receives an null for success. Throw error

Implementation

Future store(String? correlationId, String key, CredentialParams credential);