fields property

List<String>? fields
final

Field names to include in synced records

If specified, only these fields will be synced, reducing bandwidth and storage usage.

Example:

fields: ['id', 'title', 'status']  // Don't sync 'description' field

Implementation

final List<String>? fields;