fromBip39HexSeed method

Wallet fromBip39HexSeed (
  1. String hex
)

Implementation

static Wallet fromBip39HexSeed(String hex) {
  HexDecoder decoder = HexDecoder();
  return Wallet._init(decoder.convert(hex));
}