PostCall typedef

PostCall = Future<Response> Function(Uri, {Object? body, Map<String, String>? headers})

Definition of a post call used by this client.

Implementation

typedef PostCall = Future<http.Response> Function(
  Uri, {
  Object? body,
  Map<String, String>? headers,
});