Selector constructor

Selector({
  1. String? text,
  2. String? textStartsWith,
  3. String? textContains,
  4. String? className,
  5. String? contentDescription,
  6. String? contentDescriptionStartsWith,
  7. String? contentDescriptionContains,
  8. String? resourceId,
  9. int? instance,
  10. bool? enabled,
  11. bool? focused,
  12. String? pkg,
})

Creates a new Selector.

Implementation

Selector({
  this.text,
  this.textStartsWith,
  this.textContains,
  this.className,
  this.contentDescription,
  this.contentDescriptionStartsWith,
  this.contentDescriptionContains,
  this.resourceId,
  this.instance,
  this.enabled,
  this.focused,
  this.pkg,
});