put<T extends Object> method
Stores a value in the storage with the specified key.
Implementation
@override
Future<void> put<T extends Object>(
String key,
T? value, [
String? trace,
]) {
return _getCache<T>().put(key, value, trace).then((_) {
resolveInFlightRequest<T>(key, value);
});
}