WalletConnectSession constructor

WalletConnectSession({
  1. required List<String> accounts,
  2. String protocol = 'wc',
  3. int version = 1,
  4. bool connected = false,
  5. int chainId = 0,
  6. String bridge = '',
  7. Uint8List? key,
  8. String clientId = '',
  9. PeerMeta? clientMeta,
  10. String peerId = '',
  11. PeerMeta? peerMeta,
  12. int handshakeId = 0,
  13. String handshakeTopic = '',
  14. int networkId = 0,
  15. String rpcUrl = '',
})

Implementation

WalletConnectSession({
  required this.accounts,
  this.protocol = 'wc',
  this.version = 1,
  this.connected = false,
  this.chainId = 0,
  this.bridge = '',
  this.key,
  this.clientId = '',
  this.clientMeta,
  this.peerId = '',
  this.peerMeta,
  this.handshakeId = 0,
  this.handshakeTopic = '',
  this.networkId = 0,
  this.rpcUrl = '',
});