has method

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

Returns true if the keychain has the given tag

Implementation

@override
bool has(String key) {
  _checkInitialized();
  return expirations.containsKey(key);
}