I'm trying to make an Http Client call in flutter with content-type:application/stream+json and accept: application/stream+json,in order to use reactive response from the backend but this is what the response looks like:
{"name":"bobby", "lastname": "fisher"}
{"name":"dominic", "lastname": "thiem"}
{"name":"roger", "lastname": "federer"}
{"name":"a", "lastname": "b"}
{"name":"c", "lastname": "d"}
{"name":"e", "lastname": "f"}
without [ ] and , so how I can iterate on it?
PD: If I send application/json works but not reactive way.
Any help?