only property

bool? get only

If at least one bench has only set to true, only run benches that have only set to true and fail the bench suite.

Implementation

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

Implementation

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