RegisterResponse constructor

RegisterResponse({
  1. String? accessToken,
  2. String? deviceId,
  3. int? expiresInMs,
  4. String? homeServer,
  5. String? refreshToken,
  6. required String userId,
})

Implementation

RegisterResponse({
  this.accessToken,
  this.deviceId,
  this.expiresInMs,
  this.homeServer,
  this.refreshToken,
  required this.userId,
});