hasKey method

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

Implementation

Future<bool> hasKey({required String key}) async {
  return storage.hasData(key);
}