fromBip39HexSeed static method

Future<Wallet> fromBip39HexSeed(
  1. String hex
)

Implementation

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