setCachedResponse method

  1. @override
Future<void> setCachedResponse(
  1. String key,
  2. ChatResponse response
)
override

Stores a response in the cache with the given key.

Implementation

@override
Future<void> setCachedResponse(String key, ChatResponse response) =>
    _cache.set(key, response);