in uber-core/src/main/java/com/uber/sdk/core/client/internal/LoginPushedAuthorizationRequest.java [44:57]
public LoginPushedAuthorizationRequest(
OAuth2Service oAuth2Service,
ProfileHint profileHint,
String clientId,
String responseType,
Callback callback
) {
this.oAuth2Service = oAuth2Service;
this.profileHint = profileHint;
this.clientId = clientId;
this.responseType = responseType.toLowerCase(Locale.US);
this.callback = callback;
this.moshi = new Moshi.Builder().build();
}