toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cve = this.cve;
  final impacts = this.impacts;
  final justification = this.justification;
  final noteName = this.noteName;
  final relatedUris = this.relatedUris;
  final remediations = this.remediations;
  final state = this.state;
  final vulnerabilityId = this.vulnerabilityId;
  return {
    'cve': ?cve,
    'impacts': ?impacts,
    'justification': ?justification,
    'noteName': ?noteName,
    'relatedUris': ?relatedUris,
    'remediations': ?remediations,
    'state': ?state,
    'vulnerabilityId': ?vulnerabilityId,
  };
}