containsKey method

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

Checks if the object has any attribute with the name of key

Implementation

@override
bool containsKey(Object? key) => keys.contains(key);