setDependentValue method
void
setDependentValue({})
Implementation
void setDependentValue({
required String fieldName,
required String dependencyName,
required dynamic value,
}) {
dependentValues[fieldName] ??= {};
dependentValues[fieldName]![dependencyName] = value;
notifyListeners();
}