documentLifecycle property

String? get documentLifecycle

The lifecycle the document that opened the connection is in at the time the port was created. Note that the lifecycle state of the document may have changed since port creation.

Implementation

String? get documentLifecycle => _wrapped.documentLifecycle;
set documentLifecycle (String? v)

Implementation

set documentLifecycle(String? v) {
  _wrapped.documentLifecycle = v;
}