where method
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)));