hasKey method

Future<bool> hasKey(
  1. String key
)

Implementation

Future<bool> hasKey(String key) async {
  return await get(key) != null;
}