invalidateQueries method
Invalidates queries matching key whenever an event is emitted by this channel stream.
Implementation
RealtimeQueryBridge invalidateQueries(
List<dynamic> key, {
bool Function(Map<String, dynamic> payload)? filter,
}) {
return RealtimeQueryBridge.bindStream(
stream: this,
key: key,
filter: filter,
);
}