toJson method

Map<String, dynamic> toJson()

Implementation

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