lifecycleManagedByParent property

bool? get lifecycleManagedByParent

Controls whether lifecycle requests like 'restart' are sent to the newly created session or its parent session. By default (if the property is false or missing), lifecycle requests are sent to the new session. This property is ignored if the session has no parent session.

Implementation

_i2.bool? get lifecycleManagedByParent => _i5.getProperty(
      this,
      'lifecycleManagedByParent',
    );
set lifecycleManagedByParent (bool? value)

Implementation

set lifecycleManagedByParent(_i2.bool? value) {
  _i5.setProperty(
    this,
    'lifecycleManagedByParent',
    value ?? _i6.undefined,
  );
}