toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allInfoTypes = this.allInfoTypes;
  final allText = this.allText;
  final redactionColor = this.redactionColor;
  final selectedInfoTypes = this.selectedInfoTypes;
  return {
    'allInfoTypes': ?allInfoTypes,
    'allText': ?allText,
    'redactionColor': ?redactionColor,
    'selectedInfoTypes': ?selectedInfoTypes,
  };
}