LoginModel constructor

LoginModel({
  1. bool? success,
  2. String? username,
  3. String? proof,
  4. String? publicKey,
  5. String? challenge,
})

Implementation

LoginModel({
  this.success,
  this.username,
  this.proof,
  this.publicKey,
  this.challenge
});