SyncFilter constructor

const SyncFilter({
  1. Map<String, dynamic>? where,
  2. DateTime? since,
  3. int? limit,
  4. List<String>? fields,
  5. List<String>? excludeFields,
})

Implementation

const SyncFilter({
  this.where,
  this.since,
  this.limit,
  this.fields,
  this.excludeFields,
}) : assert(
        fields == null || excludeFields == null,
        'Cannot specify both fields and excludeFields',
      );