AckFrame constructor

AckFrame({
  1. required int largestAcked,
  2. required int ackDelay,
  3. required int firstAckRangeLength,
  4. List<AckRange> ackRanges = const [],
  5. int? ect0Count,
  6. int? ect1Count,
  7. int? ceCount,
})

Implementation

AckFrame({
  required this.largestAcked,
  required this.ackDelay,
  required this.firstAckRangeLength,
  this.ackRanges = const [],
  this.ect0Count,
  this.ect1Count,
  this.ceCount,
}) : super(FrameType.ack);