AuthResult constructor

AuthResult({
  1. String? token,
  2. bool? authenticated,
  3. String? refreshToken,
  4. String? sessionId,
  5. String? accessToken,
  6. bool? verified,
  7. String? message,
  8. String? otpId,
  9. List<Business>? businesses,
  10. UserPermissions? legacyPermissions,
  11. List<BusinessUser>? businessUsers,
})

Implementation

AuthResult({
  this.token,
  this.authenticated,
  this.refreshToken,
  this.sessionId,
  this.accessToken,
  this.verified,
  this.message,
  this.otpId,
  this.businesses,
  this.legacyPermissions,
  this.businessUsers,
});