DklsKeyshare.fromBytes constructor
Create DklsKeyshare using bytes
Implementation
factory DklsKeyshare.fromBytes(Iterable<int> bytes) {
final bytesBuffer = utils.allocateTssBufferFromBytes(bytes);
final handle = ctss_wrapper.dklsKeyshareFromBytes(bytesBuffer);
return DklsKeyshare(handle);
}