AuthSession constructor

AuthSession({
  1. String? userId,
  2. String? refreshToken,
  3. String? sessionId,
  4. String? sessionToken,
  5. bool? verified,
  6. String? message,
  7. String? otpId,
  8. List<Business>? businesses,
})

Implementation

AuthSession({
  this.userId,
  this.refreshToken,
  this.sessionId,
  this.sessionToken,
  this.verified,
  this.message,
  this.otpId,
  this.businesses,
});