CompareListsOfObjectResult<T> constructor
CompareListsOfObjectResult<T> ({})
Creates a new instance of CompareListsOfObjectResult.
The added
parameter represents the list of objects that were added.
The removed
parameter represents the list of objects that were removed.
The updated
parameter represents the list of objects that were updated.
Implementation
CompareListsOfObjectResult({
required this.added,
required this.removed,
required this.updated,
});