toJson method

Map<String, dynamic> toJson()

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,
  };
}