copyWith method
Implementation
BulkChangeOwnerDetails copyWith({bool? autofixName, String? newOwner}) {
return BulkChangeOwnerDetails(
autofixName: autofixName ?? this.autofixName,
newOwner: newOwner ?? this.newOwner,
);
}
BulkChangeOwnerDetails copyWith({bool? autofixName, String? newOwner}) {
return BulkChangeOwnerDetails(
autofixName: autofixName ?? this.autofixName,
newOwner: newOwner ?? this.newOwner,
);
}