toJson method

Map<String, dynamic> toJson()

Implementation

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