accessTextController method

AFTextEditingController? accessTextController(
  1. AFWidgetID wid
)
inherited

Implementation

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