toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final redactionOutput = this.redactionOutput;
  final redactionType = this.redactionType;
  return {
    'RedactionOutput': redactionOutput.toValue(),
    'RedactionType': redactionType.toValue(),
  };
}