AuthResponse constructor

  1. @Deprecated('Use LoginOTPResponse from auth_models.dart instead')
const AuthResponse({
  1. required String accessToken,
  2. required String refreshToken,
  3. required String tokenType,
  4. required int expiresIn,
  5. String? organizationId,
  6. String? organizationName,
})

Implementation

@Deprecated('Use LoginOTPResponse from auth_models.dart instead')
const factory AuthResponse({
  required String accessToken,
  required String refreshToken,
  required String tokenType,
  required int expiresIn,
  String? organizationId,
  String? organizationName,
}) = _AuthResponse;