containsKey method

Future<bool> containsKey({
  1. required String key,
})

Returns true if the storage contains the given key.

Implementation

Future<bool> containsKey({
  required String key,
}) async =>
    fileStorageManager.containsKey(key: key);