statusBarCommands property

List<Command>? get statusBarCommands

Optional status bar commands.

These commands will be displayed in the editor's status bar.

Implementation

_i2.List<_i3.Command>? get statusBarCommands => (_i5.getProperty(
      this,
      'statusBarCommands',
    ) as _i2.List?)
        ?.cast();
set statusBarCommands (List<Command>? value)

Implementation

set statusBarCommands(_i2.List<_i3.Command>? value) {
  _i5.setProperty(
    this,
    'statusBarCommands',
    value ?? _i6.undefined,
  );
}