DocumentChange constructor

DocumentChange({
  1. Document? document,
  2. List<int>? removedTargetIds,
  3. List<int>? targetIds,
})

Implementation

DocumentChange({
  this.document,
  this.removedTargetIds,
  this.targetIds,
});