DiffAndIntersectResult<T, G> constructor

DiffAndIntersectResult<T, G>({
  1. List<T>? diffThisMinusOther,
  2. List<G>? diffOtherMinusThis,
  3. List<T>? intersectThisWithOther,
  4. List<T>? intersectOtherWithThis,
})

Implementation

DiffAndIntersectResult({
  this.diffThisMinusOther,
  this.diffOtherMinusThis,
  this.intersectThisWithOther,
  this.intersectOtherWithThis,
});