effectiveController property

AFTextEditingController get effectiveController

Implementation

AFTextEditingController get effectiveController {
  var result = controller;
  result ??= controllers?.access(wid);
  result ??= parentParam?.flutterState?.textControllers?.access(wid);
  if(result == null) {
    throw AFException("Missing text controller for $wid");
  }
  return result;
}