Brian Quinlan
Brian Quinlan
@jezell Do you have a suggestion for a technical approach to make this work? According to the [MDN compatibility chart](https://developer.mozilla.org/en-US/docs/Web/API/Request#browser_compatibility), `ReadableStream` is not supported in Safari or Firefox. This is...
@duncaninsiris On what platform are you thinking? It might be possible to do this using the `package:cupertino_http` API but, AFAIK, Android does not support any special background downloading support in...
I patched this change locally and did some testing. For `IOClient`, the progress seemed useful for large requests (assuming that the stream is split into relatively small lists). On my...
Would it be possible for someone to include a minimum reproduction?
This is a duplicate of https://github.com/dart-lang/http/issues/24
I'm taking a look at this right now. Here are the implementations and how they handle cookies/headers: | Client | Implementation | |-|-| | IOClient | Headers represented as `Map`....
We could add a new `List` representation of header values to `BaseResponse`: ```dart class BaseResponse { ... Map headersFieldValueList; } ``` Would that be sufficient? Getting `dart:io` cookies would be...
This seems to be working as designed and documented. If you want to assign set the body without setting the `Content-Type` header implicitly, can't you just assign your data to...
> > this is ridiculous migrated to Dio > > Unbelievable that you'd have to pick a library over the langs native HTTP client. I've never seen a language where...
Is there any more feedback on this? Does the pattern suggested in https://github.com/dart-lang/http/issues/184#issuecomment-1634877777 fix the issue?