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