copyWith method
Implementation
StatusMigration copyWith(
{String? newStatusReference, String? oldStatusReference}) {
return StatusMigration(
newStatusReference: newStatusReference ?? this.newStatusReference,
oldStatusReference: oldStatusReference ?? this.oldStatusReference,
);
}