AuthEngine constructor

AuthEngine({
  1. required ICore core,
  2. required PairingMetadata metadata,
  3. required IGenericStore<AuthPublicKey> authKeys,
  4. required IGenericStore<String> pairingTopics,
  5. required IGenericStore<PendingAuthRequest> authRequests,
  6. required IGenericStore<StoredCacao> completeRequests,
})

Implementation

AuthEngine({
  required this.core,
  required this.metadata,
  required this.authKeys,
  required this.pairingTopics,
  required this.authRequests,
  required this.completeRequests,
});