CockpitTestConditionTemplate constructor

CockpitTestConditionTemplate({
  1. required CockpitTestConditionKind kind,
  2. CockpitTestLocatorTemplate? locator,
  3. CockpitTestTemplateValue? expected,
  4. CockpitTestTemplateValue? text,
  5. CockpitTextMatchMode? matchMode,
  6. CockpitTestTemplateValue? route,
  7. CockpitTestTemplateValue? quietMs,
})

Creates a CockpitTestConditionTemplate.

Implementation

CockpitTestConditionTemplate({
  required this.kind,
  this.locator,
  this.expected,
  this.text,
  this.matchMode,
  this.route,
  this.quietMs,
}) {
  _validate();
}