map<V extends Object> method

TypedDeviceVendorInfoDictionary<V> map<V extends Object>(
  1. V convert(
    1. Object value
    )
)

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