ResponseSelection.fromJson constructor
Implementation
factory ResponseSelection.fromJson(Map<String, dynamic> json) {
return ResponseSelection(
invert: json['invert'],
responseMatch: json['responseMatch'],
xPath: json['xPath'],
jsonPath: json['jsonPath'],
);
}