toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final decommissionedDate = this.decommissionedDate;
final deprecationDate = this.deprecationDate;
final displayName = this.displayName;
final endOfSupportDate = this.endOfSupportDate;
final environment = this.environment;
final name = this.name;
final stage = this.stage;
final supportedOperatingSystems = this.supportedOperatingSystems;
final warnings = this.warnings;
return {
'decommissionedDate': ?decommissionedDate,
'deprecationDate': ?deprecationDate,
'displayName': ?displayName,
'endOfSupportDate': ?endOfSupportDate,
'environment': ?environment,
'name': ?name,
'stage': ?stage,
'supportedOperatingSystems': ?supportedOperatingSystems,
'warnings': ?warnings,
};
}