addEffect method

void addEffect(
  1. dynamic effect(
    1. Snapshot<Map<K, V>>
    )
)

Implementation

void addEffect(Function(Snapshot<Map<K, V>>) effect) {
  stream.listen(effect);
}