toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cvssScore = this.cvssScore;
final cvssV2 = this.cvssV2;
final cvssV3 = this.cvssV3;
final cvssVersion = this.cvssVersion;
final details = this.details;
final severity = this.severity;
final sourceUpdateTime = this.sourceUpdateTime;
final windowsDetails = this.windowsDetails;
return {
'cvssScore': ?cvssScore,
'cvssV2': ?cvssV2,
'cvssV3': ?cvssV3,
'cvssVersion': ?cvssVersion,
'details': ?details,
'severity': ?severity,
'sourceUpdateTime': ?sourceUpdateTime,
'windowsDetails': ?windowsDetails,
};
}