startUpTimestamp property
the startup time of the app
Implementation
int get startUpTimestamp => _startUpTimestamp;
registers the startup time (very important !!! not really LOL)
Implementation
set startUpTimestamp(int time) {
if (_startUpTimestamp < 0) {
_startUpTimestamp = time;
} else {
logger.warning(
"Start Up Timestamp has already been registered to ${DateTime.fromMicrosecondsSinceEpoch(_startUpTimestamp)}. No change.");
}
}