currentController property

WebFController? get currentController

Implementation

WebFController? get currentController {
  if (_currentContext is WebFControllerDebuggingAdapter) {
    return (_currentContext as WebFControllerDebuggingAdapter).controller;
  }
  return null;
}