accessScrollController method

ScrollController accessScrollController(
  1. AFWidgetID wid
)
inherited

Implementation

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