Payload constructor
Payload({
- required Metadata metadata,
- required String url,
- required String urlType,
- required String method,
- required Login login,
- required List<
ResponseSelection> responseSelections, - Map<
String, String> ? headers, - String? customInjection,
- BodySniff? bodySniff,
- Map<
String, String> ? userAgent, - String? geoLocation,
- String? matchType,
- required String injectionType,
- required bool disableRequestReplay,
- 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
});