AuthenticationResult constructor

AuthenticationResult({
  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,
})

Implementation

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