startedTime property

DateTime startedTime

The time the Serverpod was started.

Implementation

DateTime get startedTime {
  assert(_startedTime != null, 'Server has not been started');
  return _startedTime!;
}