ignore property
bool?
get
ignore
If truthy the current test step will be ignored.
This is a quick way to skip over a step, but also can be used for conditional logic, like determining if an environment feature is present.
Implementation
_i2.bool? get ignore => _i3.getProperty(
this,
'ignore',
);
set
ignore
(bool? value)
Implementation
set ignore(_i2.bool? value) {
_i3.setProperty(
this,
'ignore',
value ?? _i6.undefined,
);
}