SignClient constructor

SignClient(
  1. ICore core, {
  2. PairingMetadata? self,
})

Implementation

SignClient(
  this.core, {
  PairingMetadata? self,
}) {
  Proposals p = Proposals(core);
  Sessions s = Sessions(core);
  engine = Engine(
    core,
    p,
    s,
    selfMetadata: self,
  );
}