Payload constructor

Payload({
  1. required Metadata metadata,
  2. required String url,
  3. required String urlType,
  4. required String method,
  5. required Login login,
  6. required List<ResponseSelection> responseSelections,
  7. Map<String, String>? headers,
  8. String? customInjection,
  9. BodySniff? bodySniff,
  10. Map<String, String>? userAgent,
  11. String? geoLocation,
  12. String? matchType,
  13. required String injectionType,
  14. required bool disableRequestReplay,
  15. Map<String, dynamic>? parameters,
})

Implementation

Payload({
  required this.metadata,
  required this.url,
  required this.urlType,
  required this.method,
  required this.login,
  required this.responseSelections,
  this.headers,
  this.customInjection,
  this.bodySniff,
  this.userAgent,
  this.geoLocation,
  this.matchType,
  required this.injectionType,
  required this.disableRequestReplay,
  this.parameters
});