AuthenticationResponse constructor

AuthenticationResponse({
  1. required bool success,
  2. String? key,
  3. int? keyId,
  4. UserInfo? userInfo,
  5. AuthenticationFailReason? failReason,
})

Implementation

AuthenticationResponse({
  required this.success,
  this.key,
  this.keyId,
  this.userInfo,
  this.failReason,
});