activeController property

ActiveController get activeController

Returns the instance of the ActiveController this property is associated with.

Implementation

ActiveController get activeController {
  if (_activeController == null) {
    throw ActiveTypeNotAssignedException(
        StackTrace.current, typeName, runtimeType);
  } else {
    return _activeController!;
  }
}