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