toJson method

Map<String, Object?> toJson()

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;
}