containsKeyInSecureData method
Returns true if secure storage contains an entry for key.
Implementation
Future<bool> containsKeyInSecureData(String key) async {
var containsKey = await _secureStorage.containsKey(
key: key, aOptions: _getAndroidOptions());
return containsKey;
}