toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final dataset = this.dataset;
final description = this.description;
final filter = this.filter;
final mostRecentEditor = this.mostRecentEditor;
final name = this.name;
final principal = this.principal;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'dataset': ?dataset,
'description': ?description,
'filter': ?filter,
'mostRecentEditor': ?mostRecentEditor,
'name': ?name,
'principal': ?principal,
'updateTime': ?updateTime,
};
}