toJson method
Implementation
Map<String, Object?> toJson() {
var autofixName = this.autofixName;
var newOwner = this.newOwner;
final json = <String, Object?>{};
json[r'autofixName'] = autofixName;
json[r'newOwner'] = newOwner;
return json;
}