Check if a key exists in the keychain.
Future<bool> has(String key) async { final value = await read(key); return value != null; }