checkDerivePath method
Implementation
Future<String?> checkDerivePath(
String seed, path, CryptoType cryptoType) async {
final String crypto = cryptoType.toString().split('.')[1];
dynamic res = await serviceRoot.webView!
.evalJavascript('keyring.checkDerivePath("$seed", "$path", "$crypto")');
return res;
}