post<T> abstract method

Future<HttpResponse<T>> post<T>({
  1. required Uri apiUri,
  2. Map<String, String>? headers,
  3. dynamic body,
  4. HttpResponseType? responseType,
  5. Duration? ttl,
  6. bool idempotent = false,
})

Implementation

Future<HttpResponse<T>> post<T>({
  required Uri apiUri,
  Map<String, String>? headers,
  dynamic body,
  HttpResponseType? responseType,
  Duration? ttl,
  bool idempotent = false,
});