IOSSelector constructor

IOSSelector({
  1. String? value,
  2. int? instance,
  3. IOSElementType? elementType,
  4. String? identifier,
  5. String? text,
  6. String? textStartsWith,
  7. String? textContains,
  8. String? label,
  9. String? labelStartsWith,
  10. String? labelContains,
  11. String? title,
  12. String? titleStartsWith,
  13. String? titleContains,
  14. bool? hasFocus,
  15. bool? isEnabled,
  16. bool? isSelected,
  17. String? placeholderValue,
  18. String? placeholderValueStartsWith,
  19. String? placeholderValueContains,
})

Creates a new IOSSelector.

Implementation

IOSSelector({
  super.value,
  super.instance,
  super.elementType,
  super.identifier,
  super.text,
  super.textStartsWith,
  super.textContains,
  super.label,
  super.labelStartsWith,
  super.labelContains,
  super.title,
  super.titleStartsWith,
  super.titleContains,
  super.hasFocus,
  super.isEnabled,
  super.isSelected,
  super.placeholderValue,
  super.placeholderValueStartsWith,
  super.placeholderValueContains,
});