toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final body = this.body;
  final description = this.description;
  final finalUrl = this.finalUrl;
  final findingType = this.findingType;
  final form = this.form;
  final frameUrl = this.frameUrl;
  final fuzzedUrl = this.fuzzedUrl;
  final httpMethod = this.httpMethod;
  final name = this.name;
  final outdatedLibrary = this.outdatedLibrary;
  final reproductionUrl = this.reproductionUrl;
  final severity = this.severity;
  final trackingId = this.trackingId;
  final violatingResource = this.violatingResource;
  final vulnerableHeaders = this.vulnerableHeaders;
  final vulnerableParameters = this.vulnerableParameters;
  final xss = this.xss;
  final xxe = this.xxe;
  return {
    'body': ?body,
    'description': ?description,
    'finalUrl': ?finalUrl,
    'findingType': ?findingType,
    'form': ?form,
    'frameUrl': ?frameUrl,
    'fuzzedUrl': ?fuzzedUrl,
    'httpMethod': ?httpMethod,
    'name': ?name,
    'outdatedLibrary': ?outdatedLibrary,
    'reproductionUrl': ?reproductionUrl,
    'severity': ?severity,
    'trackingId': ?trackingId,
    'violatingResource': ?violatingResource,
    'vulnerableHeaders': ?vulnerableHeaders,
    'vulnerableParameters': ?vulnerableParameters,
    'xss': ?xss,
    'xxe': ?xxe,
  };
}