You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently, i had to send GET request with queryParams with same query param name,
url looks like: BASE_URL/api/v1/needs_update/status=NEEDS_UPDATE&status=AVAILABLE&limit=30&offset=0
as you seen status duplictes and filter response like: list.where( (e) =>( e.status =='NEEDS_UPDATE' && e.status=='AVAILABLE' ));
in requests queryParameters have type Map<String, dynamic>? queryParameters,
that means i can't pass same key into map, there is option to pass same queries? if not which is the best way to pass it ?
at this moment i pass params by manual into URL string
I have not found a similar issue in closed
The text was updated successfully, but these errors were encountered:
looked for similar ones and found something, I think it will solve my problem #734
perhaps it is worth more explicitly mentioning such a case in the documentation for
Recently, i had to send GET request with queryParams with same query param name,
url looks like:
BASE_URL/api/v1/needs_update/status=NEEDS_UPDATE&status=AVAILABLE&limit=30&offset=0
as you seen status duplictes and filter response like:
list.where( (e) =>( e.status =='NEEDS_UPDATE' && e.status=='AVAILABLE' ));
in requests queryParameters have type Map<String, dynamic>? queryParameters,
that means i can't pass same key into map, there is option to pass same queries? if not which is the best way to pass it ?
at this moment i pass params by manual into URL string
I have not found a similar issue in closed
The text was updated successfully, but these errors were encountered: