has static method

Future<bool> has(
  1. String key
)

Checks if an item exists.

Implementation

static Future<bool> has(String key) async {
  return _driver.has(key);
}