AuthData constructor

const AuthData({
  1. String? accessToken,
  2. String? refreshToken,
  3. String? deviceId,
  4. String? userId,
  5. String? organizationId,
  6. int? expiresAt,
})

Implementation

const AuthData({
  this.accessToken,
  this.refreshToken,
  this.deviceId,
  this.userId,
  this.organizationId,
  this.expiresAt,
});