connect abstract method

Future<Session> connect({
  1. Duration? timeLimit,
  2. Uri? walletUriBase,
})

Establishes an encrypted session between the dApp and wallet endpoints.

This method should run in a synchronized block and can only be called once.

Implementation

Future<Session> connect({
  final Duration? timeLimit,
  final Uri? walletUriBase,
});