putIfAbsent method

  1. @override
dynamic putIfAbsent(
  1. dynamic key,
  2. dynamic ifAbsent()
)
inherited

Throws an UnsupportedError; operations that change the map are disallowed.

Implementation

@override
V putIfAbsent(K key, V Function() ifAbsent) => _throw();