toJson method

Map<String, dynamic> toJson()

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,
  };
}