toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final collection = this.collection;
final others = this.others;
final singleResource = this.singleResource;
return {
'collection': ?collection,
'others': ?others,
'singleResource': ?singleResource,
};
}