checkDerivePath method

Future<String?> checkDerivePath(
  1. String seed,
  2. dynamic path,
  3. CryptoType cryptoType
)

Check if derive path is valid, return null if valid, and return error message if invalid.

Implementation

Future<String?> checkDerivePath(
    String seed, path, CryptoType cryptoType) async {
  String? res = await service!.checkDerivePath(seed, path, cryptoType);
  return res;
}