ChangeBatch constructor

ChangeBatch({
  1. required List<Change> changes,
  2. String? comment,
})

Implementation

ChangeBatch({
  required this.changes,
  this.comment,
});