equalTo method

DbQuery equalTo(
  1. Object? value, {
  2. String? key,
})

Exactly value. Cannot be combined with startAt or endAt: it is both of them at once, so pairing them is a contradiction rather than a narrowing, and the native side refuses it.

Implementation

DbQuery equalTo(Object? value, {String? key}) =>
    _with({'equalTo': value, if (key != null) 'equalToKey': key});