private RideParameters()

in rides-android/src/main/java/com/uber/sdk/android/rides/RideParameters.java [93:113]


    private RideParameters(boolean isPickupMyLocation,
            @Nullable String productId,
            @Nullable Double pickupLatitude,
            @Nullable Double pickupLongitude,
            @Nullable String pickupNickname,
            @Nullable String pickupAddress,
            @Nullable Double dropoffLatitude,
            @Nullable Double dropoffLongitude,
            @Nullable String dropoffNickname,
            @Nullable String dropoffAddress) {
        this.isPickupMyLocation = isPickupMyLocation;
        this.productId = productId;
        this.pickupLatitude = pickupLatitude;
        this.pickupLongitude = pickupLongitude;
        this.pickupNickname = pickupNickname;
        this.pickupAddress = pickupAddress;
        this.dropoffLatitude = dropoffLatitude;
        this.dropoffLongitude = dropoffLongitude;
        this.dropoffNickname = dropoffNickname;
        this.dropoffAddress = dropoffAddress;
    }