toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final path = this.path;
final pathFilters = this.pathFilters;
final pathValueMatchers = this.pathValueMatchers;
final resource = this.resource;
final resourceType = this.resourceType;
final sourcePath = this.sourcePath;
final sourceResource = this.sourceResource;
final value = this.value;
final valueMatcher = this.valueMatcher;
return {
'action': ?action,
'path': ?path,
'pathFilters': ?pathFilters,
'pathValueMatchers': ?pathValueMatchers,
'resource': ?resource,
'resourceType': ?resourceType,
'sourcePath': ?sourcePath,
'sourceResource': ?sourceResource,
'value': ?value,
'valueMatcher': ?valueMatcher,
};
}