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