setProperty method
update a property. If this is a HasController (i.e. Widget), notify it of changes
Implementation
@override
void setProperty(dynamic prop, dynamic val) {
Function? f = setters()[prop];
if (f != null) {
f(val);
}
}
update a property. If this is a HasController (i.e. Widget), notify it of changes
@override
void setProperty(dynamic prop, dynamic val) {
Function? f = setters()[prop];
if (f != null) {
f(val);
}
}