where property

Map<String, dynamic>? where
final

Field-based filters for the collection

Only records matching ALL conditions will be synced. Supports simple equality checks.

Example:

where: {
  'userId': currentUserId,
  'status': 'active',
}

Implementation

final Map<String, dynamic>? where;