toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final classifications = this.classifications;
  final excludes = this.excludes;
  final exclusivePatches = this.exclusivePatches;
  return {
    'classifications': ?classifications,
    'excludes': ?excludes,
    'exclusivePatches': ?exclusivePatches,
  };
}