toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accounts = this.accounts;
final corpus = this.corpus;
final holdId = this.holdId;
final name = this.name;
final orgUnit = this.orgUnit;
final query = this.query;
final updateTime = this.updateTime;
return {
'accounts': ?accounts,
'corpus': ?corpus,
'holdId': ?holdId,
'name': ?name,
'orgUnit': ?orgUnit,
'query': ?query,
'updateTime': ?updateTime,
};
}