map<V extends Object> method
Change the original values to V which may modified during
convert.
This method is equivalent to Iterable.map since any modification of keys is forbidden. Therefore, it does not based on Map.map.
Implementation
TypedDeviceVendorInfoDictionary<V> map<V extends Object>(
V Function(Object value) convert) =>
_DelegatedDeviceVendorInfoDictionary(entries.map(
(event) => MapEntry<String, V>(event.key, convert(event.value))));