removeNode method
Implementation
void removeNode(String path) {
if (provider is! MutableNodeProvider) {
throw Exception('Unable to Modify Node Provider: It is not mutable.');
}
(provider as MutableNodeProvider).removeNode(path);
}
void removeNode(String path) {
if (provider is! MutableNodeProvider) {
throw Exception('Unable to Modify Node Provider: It is not mutable.');
}
(provider as MutableNodeProvider).removeNode(path);
}