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