onDidChangeCellStatusBarItems property

Event<void>? onDidChangeCellStatusBarItems

An optional event to signal that statusbar items have changed. The provide method will be called again.

Implementation

_i3.Event<void>? get onDidChangeCellStatusBarItems => _i5.getProperty(
      this,
      'onDidChangeCellStatusBarItems',
    );
void onDidChangeCellStatusBarItems=(Event<void>? value)

Implementation

set onDidChangeCellStatusBarItems(_i3.Event<void>? value) {
  _i5.setProperty(
    this,
    'onDidChangeCellStatusBarItems',
    value ?? _i6.undefined,
  );
}