I'm using http/http.dart trying to POST multipart/form-data like this :
Version: "1.0"
Token: "xxxxxxxxxx"
Ids: "1"
Ids: "2"
Ids: "3"
The problem is Dart accept map body which do not allows duplicate key. The best approach I could come up is wrap "Ids" key as array. Unfortunately I'm not in the position that can negotiate with web server dev team, so, only option I have is to use given API.
Anyone has suggestion for this issue?