PathResponseFrame constructor

PathResponseFrame({
  1. required Uint8List data,
})

Implementation

PathResponseFrame({required this.data}) : super(FrameType.pathResponse) {
  if (data.length != 8) {
    throw ArgumentError('PathResponseFrame data must be 8 bytes long.');
  }
}