AuthResponse constructor

AuthResponse({
  1. required int id,
  2. required String topic,
  3. Cacao? result,
  4. WalletConnectError? error,
  5. JsonRpcError? jsonRpcError,
})

Implementation

AuthResponse({
  required this.id,
  required this.topic,
  this.result,
  this.error,
  this.jsonRpcError,
});