EndResp.fromBytes constructor
EndResp.fromBytes(
- Uint8List data
Implementation
factory EndResp.fromBytes(Uint8List data) {
if (!EmptyMessage._isValidSize(data)) {
throw IncorrectMessageSizeException();
}
return EndResp();
}