startUpTimestamp property

int get startUpTimestamp

the startup time of the app

Implementation

int get startUpTimestamp => _startUpTimestamp;
set startUpTimestamp (int time)

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.");
  }
}