copyWith method

BulkChangeOwnerDetails copyWith({
  1. bool? autofixName,
  2. String? newOwner,
})

Implementation

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