standAloneApp property
bool?
get
standAloneApp
Determine if this app is running alone
Implementation
bool? get standAloneApp => _standAlone;
set
standAloneApp
(bool? alone)
Implementation
set standAloneApp(bool? alone) {
if (!_standAlone) {
if (alone != null && alone) {
_standAlone = true;
}
}
}