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