ElectrumV2Segwit.fromSeed constructor
Factory method to create an instance from a seed.
Implementation
factory ElectrumV2Segwit.fromSeed(List<int> seedBytes) {
final bip = Bip32Slip10Secp256k1.fromSeed(seedBytes);
return ElectrumV2Segwit(bip);
}