copyWithWrapped method

Implementation

IncomeVerificationPrecheckPayrollInstitution copyWithWrapped(
    {Wrapped<String?>? name}) {
  return IncomeVerificationPrecheckPayrollInstitution(
      name: (name != null ? name.value : this.name));
}