toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'comments'] = this.comments;
    json[r'history'] = this.history;
    json[r'attachmentMetadata'] = this.attachmentMetadata;
  return json;
}