has method

  1. @override
bool has(
  1. String tag, {
  2. dynamic options,
})
override

Returns true if the keychain has the given tag

Implementation

@override
bool has(
  String tag, {
  dynamic options,
}) {
  _checkInitialized();
  return keyChain.containsKey(tag);
}