toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final category = this.category;
final costProjection = this.costProjection;
final impactComponents = this.impactComponents;
final reliabilityProjection = this.reliabilityProjection;
final securityProjection = this.securityProjection;
final service = this.service;
final sustainabilityProjection = this.sustainabilityProjection;
return {
'category': ?category,
'costProjection': ?costProjection,
'impactComponents': ?impactComponents,
'reliabilityProjection': ?reliabilityProjection,
'securityProjection': ?securityProjection,
'service': ?service,
'sustainabilityProjection': ?sustainabilityProjection,
};
}