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