derive method

Future<Uint8List> derive(
  1. List<int> seed,
  2. Iterable<DeriveJunction> path, {
  3. Uint8List? output,
})

Derive a child key from a series of given junctions.

Implementation

Future<Uint8List> derive(List<int> seed, Iterable<DeriveJunction> path,
    {Uint8List? output}) {
  throw UnimplementedError('Implement derive in child class.');
}