deriveKey static method

List<int> deriveKey(
  1. String path,
  2. String seed
)

Implementation

static List<int> deriveKey(String path, String seed) {
  return ed25519.Ed25519.derivePath(path, seed).key!;
}