fromBip39HexSeed method Null safety
- String hex
Implementation
static Future<Wallet> fromBip39HexSeed(String hex) async {
HexDecoder decoder = HexDecoder();
return Wallet._init(Uint8List.fromList(decoder.convert(hex)));
}
static Future<Wallet> fromBip39HexSeed(String hex) async {
HexDecoder decoder = HexDecoder();
return Wallet._init(Uint8List.fromList(decoder.convert(hex)));
}