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