WCApproveSessionResponse constructor

WCApproveSessionResponse({
  1. bool approved = true,
  2. int? chainId,
  3. required List<String> accounts,
  4. required String peerId,
  5. required WCPeerMeta peerMeta,
})

Implementation

WCApproveSessionResponse({
  this.approved = true,
  this.chainId,
  required this.accounts,
  required this.peerId,
  required this.peerMeta,
});