deriveKey method
Derives and returns a BIP32 base key based on two key indices, 'firstIndex' and 'secondIndex'.
Implementation
Bip32Base<dynamic> deriveKey(
Bip32KeyIndex firstIndex,
Bip32KeyIndex secondIndex,
) {
return _deriveKey(firstIndex, secondIndex);
}