CompareListsOfObjectResult<T> constructor

CompareListsOfObjectResult<T>({
  1. required List<T> added,
  2. required List<T> removed,
  3. required List<T> updated,
})

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,
});