SessionAuthResponse constructor

SessionAuthResponse({
  1. required int id,
  2. required String topic,
  3. List<Cacao>? auths,
  4. SessionData? session,
  5. ReownSignError? error,
  6. JsonRpcError? jsonRpcError,
})

Implementation

SessionAuthResponse({
  required this.id,
  required this.topic,
  this.auths,
  this.session,
  this.error,
  this.jsonRpcError,
});