toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final base = this.base;
  final body = this.body;
  final closeTime = this.closeTime;
  final createTime = this.createTime;
  final head = this.head;
  final name = this.name;
  final state = this.state;
  final title = this.title;
  final updateTime = this.updateTime;
  return {
    'base': ?base,
    'body': ?body,
    'closeTime': ?closeTime,
    'createTime': ?createTime,
    'head': ?head,
    'name': ?name,
    'state': ?state,
    'title': ?title,
    'updateTime': ?updateTime,
  };
}