toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final caption = this.caption;
final description = this.description;
final hotFixId = this.hotFixId;
final installTime = this.installTime;
return {
'caption': ?caption,
'description': ?description,
'hotFixId': ?hotFixId,
'installTime': ?installTime,
};
}