ResponseSelection.fromJson constructor

ResponseSelection.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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