post method
make an actual API request to a route, and always append the API_KEY as authorization-header
Implementation
Future<http.Response?> post(
String route, {
Map<String, String>? headers,
String? body,
Encoding? encoding,
Duration? timeout,
}) =>
send(
makepost(route, headers: headers, body: body, encoding: encoding),
timeout: timeout,
);