containsKey method

  1. @override
bool containsKey(
  1. String key
)
override

Checks whether the key value storage contains the key.

Implementation

@override
bool containsKey(String key) {
  return _box.containsKey(key);
}