controller property

D4rtCliController get controller

Gets the controller, throwing if not initialized.

Implementation

D4rtCliController get controller {
  if (_controller == null) {
    throw CliNotInitializedException();
  }
  return _controller!;
}