X-www-form-urlencoded data in akka http java dsl

Hi

I want to use form data in Akka HTTP 10.1.9.
If I use Unmarshaller.entityToWwwUrlEncodedFormData() then I get a akka.http.javadsl.model.FormData
with a akka.http.javadsl.model.Query. Thats nice, all information are inside.
But there is not method to access the data. No getter. Nothing.
Whats the trick?

Best
Sigurd

Have you seen the formField directives? They provide high-level access to data provided with form-urlencoded data.

https://doc.akka.io/docs/akka-http/current/routing-dsl/directives/form-field-directives/formField.html#description

It seems that this is an oversight. Can you create an issue / PR to add a getterat GitHub - akka/akka-http: The Streaming-first HTTP server/module of Akka?