updateTextField method

void updateTextField(
  1. AFWidgetID wid,
  2. String text
)
inherited

Implementation

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