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