toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final characterMaskConfig = this.characterMaskConfig;
  final cryptoHashConfig = this.cryptoHashConfig;
  final dateShiftConfig = this.dateShiftConfig;
  final infoTypes = this.infoTypes;
  final redactConfig = this.redactConfig;
  final replaceWithInfoTypeConfig = this.replaceWithInfoTypeConfig;
  return {
    'characterMaskConfig': ?characterMaskConfig,
    'cryptoHashConfig': ?cryptoHashConfig,
    'dateShiftConfig': ?dateShiftConfig,
    'infoTypes': ?infoTypes,
    'redactConfig': ?redactConfig,
    'replaceWithInfoTypeConfig': ?replaceWithInfoTypeConfig,
  };
}