app property

QudsApp? app

Get the QudsApp set to this controller.

Implementation

QudsApp? get app => _app;
void app=(QudsApp? v)

Set a QudsApp to be managed using this controller.

Implementation

set app(QudsApp? v) {
  _app = v;
  if (!_appAlreadySet && _app != null) {
    onAppSet?.call();
    _appAlreadySet = true;
  }
}