derivePath method

  1. @override
HDPrivateKey derivePath(
  1. String path
)
override

Derives a child key in a path format akin to "m/15/3'/4" where the optional "m" specifies that this key is a master key and "'" specifies that an index is a hardened key.

Implementation

@override
HDPrivateKey derivePath(String path) => super.derivePath(path) as HDPrivateKey;