app property

AppObject? get app

Reference to the 'app' object.

Implementation

AppObject? get app => _app;
set app (AppObject? app)

Set the 'app' object but only once!

Implementation

set app(AppObject? app) => _app ??= app;