derivePath method

HDWallet derivePath(
  1. String path
)

derivePath will return child hdwallet

Implementation

HDWallet derivePath(String path){
  BIP32 child=_bip32.derivePath(path);
  String coinType=getCoinType(path);
  return HDWallet(child,coinType: coinType);
}