initialLifecycleState property

String initialLifecycleState

The lifecycle state immediately after dart isolate initialization.

This property will not be updated as the lifecycle changes.

It is used to initialize SchedulerBinding.lifecycleState at startup with any buffered lifecycle state events.

Implementation

String get initialLifecycleState {
  _initialLifecycleStateAccessed = true;
  return _initialLifecycleState;
}