get method

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

Implementation

@override
Future<String> get(url,
        {readCache = true,
        writeCache = true,
        ttl,
        headers = const {},
        defaultCharset,
        forcedCharset}) async =>
    getUri(Uri.parse(url));