AuthResponseSuccess constructor

const AuthResponseSuccess({
  1. required List<DelegationWithSignature> delegations,
  2. required Uint8List userPublicKey,
  3. String kind = 'authorize-client-success',
})

Implementation

const AuthResponseSuccess({
  required this.delegations,
  required this.userPublicKey,
  super.kind = 'authorize-client-success',
});