copyWith method

StatusMigration copyWith({
  1. String? newStatusReference,
  2. String? oldStatusReference,
})

Implementation

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