Chain.seed constructor
Chain.seed(
- String seed
Create a chain based on a hex seed.
Implementation
Chain.seed(String seed) {
var seedBytes = Uint8List.fromList(hex.decoder.convert(seed));
root = ExtendedPrivateKey.master(seedBytes);
}