The bug is on line 67/68 of http_with_middleware.dart
Can you please update
return _withClient((client) => client.post(data.url,
headers: headers, body: data.body, encoding: data.encoding));
to
return _withClient((client) => client.post(data.url,
headers: data.headers, body: data.body, encoding: data.encoding));
i'm not sure if line 48 also has this issue