ListDiff constructor

const ListDiff({
  1. required List<int> removeIndicesDesc,
  2. required List<int> insertIndicesAsc,
})

Creates a diff describing changes between two lists.

Implementation

const ListDiff({
  required this.removeIndicesDesc,
  required this.insertIndicesAsc,
});