postUri method

  1. @override
Future<String> postUri(
  1. Uri url,
  2. Object body, {
  3. Map<String, String> headers = const {},
  4. bool readCache = true,
  5. bool writeCache = true,
  6. Duration? ttl,
  7. String defaultCharset(
    1. List<int>
    )?,
  8. String forcedCharset(
    1. List<int>
    )?,
})
override

Implementation

@override
Future<String> postUri(url, body,
        {headers = const {},
        readCache = true,
        writeCache = true,
        ttl,
        defaultCharset,
        forcedCharset}) async =>
    getPostCache(url, body, headers)!;