version property

String? get version

The task version as used in the tasks.json file. The string support the package.json semver notation.

Implementation

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

Implementation

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