LoginResponse constructor

LoginResponse({
  1. required String accessToken,
  2. required String deviceId,
  3. int? expiresInMs,
  4. String? noDe,
  5. String? refreshToken,
  6. required String userId,
  7. DiscoveryInformation? wellKnown,
})

Implementation

LoginResponse({
  required this.accessToken,
  required this.deviceId,
  this.expiresInMs,
  this.noDe,
  this.refreshToken,
  required this.userId,
  this.wellKnown,
});