toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final comment = this.comment;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final feedbackContexts = this.feedbackContexts;
  final feedbackType = this.feedbackType;
  final name = this.name;
  final reason = this.reason;
  final updateTime = this.updateTime;
  return {
    'comment': ?comment,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'feedbackContexts': ?feedbackContexts,
    'feedbackType': ?feedbackType,
    'name': ?name,
    'reason': ?reason,
    'updateTime': ?updateTime,
  };
}