ResponseSelection constructor

ResponseSelection({
  1. required bool invert,
  2. required String responseMatch,
  3. String? xPath,
  4. String? jsonPath,
})

Implementation

ResponseSelection({
  required this.invert,
  required this.responseMatch,
  this.xPath,
  this.jsonPath,
});