toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final filterProfile = this.filterProfile;
final keepList = this.keepList;
final removeList = this.removeList;
final skipIdRedaction = this.skipIdRedaction;
return {
'filterProfile': ?filterProfile,
'keepList': ?keepList,
'removeList': ?removeList,
'skipIdRedaction': ?skipIdRedaction,
};
}