exists method

Future<bool> exists(
  1. String key
)

Implementation

Future<bool> exists(String key) async {
  return await _database?.exists(key) ?? false;
}