serialize method
Serializes this envelope back into the LRTC byte layout.
Implementation
Uint8List serialize() {
final out = Uint8List(header.length + sealed.length);
out.setAll(0, header);
out.setAll(header.length, sealed);
return out;
}
Serializes this envelope back into the LRTC byte layout.
Uint8List serialize() {
final out = Uint8List(header.length + sealed.length);
out.setAll(0, header);
out.setAll(header.length, sealed);
return out;
}