insert method

  1. @override
bool insert(
  1. String key,
  2. String value
)
override

Inserts or replaces an item in the map.

Implementation

@override
bool insert(String key, String value) => _iMap.insert(key, value);