where method

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

Filter entries with matched condition.

Implementation

@override
VendorDictionary<V> where(bool Function(String key, V value) condition) {
  return VendorDictionarySelector(this, condition);
}