updateTextField method
Implementation
void updateTextField(AFWidgetID wid, String text) {
final tc = flutterStateGuaranteed.textControllers;
if(tc == null) {
throw AFException(AFStateProgrammingInterface.errNeedTextControllers);
}
tc.update(wid, text);
}