where method

DeviceVendorInfoDictionary where(
  1. bool test(
    1. String key,
    2. Object value
    )
)

Perform a test and filter the valid entries into another DeviceVendorInfoDictionary.

This method is equivalent to Iterable.where.

Implementation

DeviceVendorInfoDictionary where(
        bool Function(String key, Object value) test) =>
    _DelegatedDeviceVendorInfoDictionary(
        entries.where((event) => test(event.key, event.value)));