contains abstract method

bool contains(
  1. String key
)

Checks whether the key exists in the storage. @param key Key to check. @return true if a value is stored under the key (regardless of type).

Dart code snippet: @snippet storage_manager_example.dart dart_KeyValueStorage_contains

Implementation

bool contains(String key);