app property

AppObject? app

Reference to the 'app' object.

Implementation

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

Set the 'app' object but only once!

Implementation

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