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. required String verificationType,
  8. Map<String, String>? headers,
  9. String? customInjection,
  10. BodySniff? bodySniff,
  11. Map<String, String>? userAgent,
  12. String? geoLocation,
  13. String? matchType,
  14. required String injectionType,
  15. required bool disableRequestReplay,
  16. Map<String, dynamic>? parameters,
})

Implementation

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