workspaceValue property

T? get workspaceValue

The workspace-specific value.

Implementation

T? get workspaceValue => _i5.getProperty(
      this,
      'workspaceValue',
    );
set workspaceValue (T? value)

Implementation

set workspaceValue(T? value) {
  _i5.setProperty(
    this,
    'workspaceValue',
    value ?? _i6.undefined,
  );
}