exists method

Future<bool> exists(
  1. TKey key
)

Implementation

Future<bool> exists(TKey key) {
  _requireKey('exists');
  return existsWhere(_keyCondition(key));
}