CacheKeyBuilder typedef

CacheKeyBuilder = String Function({Object? body, Map<String, String>? headers, required Uri url})

Key builder to customize keys.

Implementation

typedef CacheKeyBuilder = String Function({
  required Uri url,
  Map<String, String>? headers,
  Object? body,
});