AuthenticationResponse constructor

const AuthenticationResponse({
  1. required String accessToken,
  2. required String deviceId,
  3. required int expiresIn,
  4. required String organizationId,
  5. required String refreshToken,
  6. required String tokenType,
  7. String? userId,
})

Implementation

const AuthenticationResponse({
  required this.accessToken,
  required this.deviceId,
  required this.expiresIn,
  required this.organizationId,
  required this.refreshToken,
  required this.tokenType,
  this.userId,
});