setAttributeValue method
Implementation
void setAttributeValue(String attribute, dynamic value) {
if (_fieldKeys[attribute] != null) {
print("Trying to change value for $attribute to $value");
_fieldKeys[attribute].currentState.didChange(value);
print(_fieldKeys[attribute].currentState.value);
_va