Crypto constructor

Crypto({
  1. required IReownCore core,
  2. required IGenericStore<String> keyChain,
  3. CryptoUtils? utils,
  4. RelayAuth? relayAuth,
})

Implementation

Crypto({
  required this.core,
  required this.keyChain,
  CryptoUtils? utils,
  RelayAuth? relayAuth,
})  : utils = utils ?? CryptoUtils(),
      relayAuth = relayAuth ?? RelayAuth();