checkDerivePath method
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;
}