baseline property

bool? get baseline

Benchmark should be used as the baseline for other benchmarks.

If there are multiple baselines in a group, the first one is used as the baseline.

Implementation

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

Implementation

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