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