GroupPatch typedef

GroupPatch = ({Map<String, Object?> data, String path})

Represents a partial update to a Firestore document identified by path.

Fields:

  • path: The full document path (e.g. users/u1/tasks/t1).
  • data: A map of fields and values to update. Only the specified fields will be modified; all others remain unchanged.

Implementation

typedef GroupPatch = ({String path, Map<String, Object?> data});