nickveliki

Results 6 comments of nickveliki

I'm guessing the anti-csrf token they use is going to make this quite challenging

I edited in /core/requests.ts getResponseBody ```ts const isBlob = contentType.match(/pdf|octet-stream/) if (isJSON) { return await response.json(); }else if (isBlob){ return await response.blob(); } else { return await response.text(); } ```...

it's not EXACTLY what's described in the issue, but generic type JsonConverters don't work as desired for me, either and I think this is the main issue input class ```dart...

@kevmoo why extend jsonserializeable? because I'm lazy, and I needed a super class to collect items with the toJson method. you're doing a lot of stuff that this package was...

so I encountered a few problems, found a few solutions so that I can actually get the container to build New DOCKERFILE ```dockerfile #------------------------------------------------------------------------------------------------------------- # Flutter Dev Container - Lucas...

@camcam1773 if you would like to, you have my approval to do it with my solution. I considered this repo abandoned until I saw your and @Akiyamka's comments just now....