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