getAccountIndexFromDerivationPath static method

int getAccountIndexFromDerivationPath(
  1. String derivationPath
)

Implementation

static int getAccountIndexFromDerivationPath(String derivationPath) {
  List<String> pathList = derivationPath.split('/');
  return int.parse(pathList.last);
}