hexCredentialsDerivation method

  1. @override
Future<List<String>> hexCredentialsDerivation(
  1. Bip32PublicKey pubKey,
  2. int startIndexInclusive,
  3. int endIndexExclusive
)
override

Implementation

@override
Future<List<String>> hexCredentialsDerivation(
  Bip32PublicKey pubKey,
  int startIndexInclusive,
  int endIndexExclusive,
) => execute(
  (w) => w.hexCredentialsDerivation(
    pubKey,
    startIndexInclusive,
    endIndexExclusive,
  ),
);