G2NativeProjective.fromBytesUnchecked constructor
Creates a G2 point from bytes without checking curve or subgroup validity.
Implementation
factory G2NativeProjective.fromBytesUnchecked(List<int> bytes) {
return G2NativeProjective.fromAffine(
G2NativeAffinePoint.fromBytesUnchecked(bytes),
);
}