contains abstract method

Future<bool> contains(
  1. dynamic key
)

Checks whether a given key exists in the storage.

  • key: The key to check.

Returns true if the key exists, otherwise false.

Implementation

Future<bool> contains(dynamic key);