textFor method

String textFor(
  1. AFWidgetID wid
)

Implementation

String textFor(AFWidgetID wid) {
  final controller = controllers[wid];
  if(controller == null) { throw AFException("Missing text controller for wid $wid"); }
  return controller.text;
}