accessScrollController method
Implementation
ScrollController accessScrollController(AFWidgetID wid) {
final sc = flutterState?.scrollControllers;
if(sc == null) {
throw AFException(AFStateProgrammingInterface.errNeedScrollControllers);
}
return sc.access(wid);
}