where abstract method

VendorDictionary<V> where(
  1. bool condition(
    1. String key,
    2. V value
    )
)

Filter entries with matched condition.

Implementation

VendorDictionary<V> where(bool Function(String key, V value) condition);