JubJubNativePoint.fromBytes constructor
Implementation
factory JubJubNativePoint.fromBytes(
List<int> bytes, {
bool zip216Enabled = true,
}) {
return JubJubNativePoint.fromAffinePoint(
JubJubAffineNativePoint.fromBytes(bytes, zip216Enabled: zip216Enabled),
);
}