exists method

  1. @override
Future<int> exists(
  1. dynamic keys
)
override

Checks if keys exists.

Returns 1 if the key exists, 0 otherwise.

Implementation

@override
Future<int> exists(dynamic keys) async => ExistsCommand(this).exists(keys);