fromBip39HexSeed method

Future<Wallet> fromBip39HexSeed (
  1. String hex
)

Implementation

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