isNodeExist method

Future<bool> isNodeExist(
  1. String nodePath
)

Verify if a node exist

Implementation

Future<bool> isNodeExist(String nodePath) async {
  try {
    await storageController!.get(nodePath);
    return true;
  } catch (e) {
    // log(e.toString());
    return false;
  }
}