val method
Implementation
dynamic val(String path, [dynamic value = unspecified]) {
if (value is Unspecified) {
return this[path]?.lastValueUpdate?.value;
} else {
updateValue(path, value);
return value;
}
}
dynamic val(String path, [dynamic value = unspecified]) {
if (value is Unspecified) {
return this[path]?.lastValueUpdate?.value;
} else {
updateValue(path, value);
return value;
}
}