containsKey method

  1. @override
bool containsKey(
  1. Object? key
)
override

Whether this map contains the given key.

Implementation

@override
bool containsKey(Object? key) {
  return _map.containsKey(key);
}