removeEffectsByKey method

Store removeEffectsByKey (String effectKey)

This method is usefull to remove effects passing effectKey on demand.

Implementation

Store removeEffectsByKey(String effectKey) {
  if (_subs.containsKey(effectKey)) {
    _subs[effectKey].cancel();
    _subs.remove(effectKey);
  }
  return this;
}