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