ChangeResponse constructor

ChangeResponse({
  1. String? lastSeq,
  2. int? pending,
  3. required List<ChangeResult> results,
})

Implementation

ChangeResponse({
  this.lastSeq,
  this.pending,
  required this.results,
});