accessTextController method
Implementation
AFTextEditingController? accessTextController(AFWidgetID wid) {
final tc = flutterState?.textControllers;
if(tc == null) {
throw AFException(AFStateProgrammingInterface.errNeedTextControllers);
}
return tc.access(wid);
}