fromBytes static method
Implementation
static Future<SchnorrKeyshare> fromBytes(Iterable<int> bytes) async {
final keyshareHandle = await schnorrKeyshareFromBytes(data: bytes.toList());
return SchnorrKeyshare(handle: keyshareHandle);
}
static Future<SchnorrKeyshare> fromBytes(Iterable<int> bytes) async {
final keyshareHandle = await schnorrKeyshareFromBytes(data: bytes.toList());
return SchnorrKeyshare(handle: keyshareHandle);
}