You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// get a list of keysfinal stream =await kv.keys();
// checks if a certain key exists in the kv storefinal exists =await stream.any((key) => key == filterKey);
Iterating over a key stream like so:
Will result in an error like so:
The solution is to use an
await for
instead ofany
.The text was updated successfully, but these errors were encountered: