CompareListsOfObject class

A utility class that provides a method to compare two lists of objects.

Constructors

CompareListsOfObject.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

compare<T extends ObjectComparable>({required List<T> oldList, required List<T> newList, required String fieldId}) CompareListsOfObjectResult<T>
Compares two lists of objects and returns the result.
compareAsync<T extends ObjectComparable>({required List<T> oldList, required List<T> newList, required String fieldId}) Future<CompareListsOfObjectResult<T>>
Compares two lists of objects and returns the result.