copyWith method

Implementation

IncomeVerificationPrecheckEmployer copyWith(
    {String? name,
    IncomeVerificationPrecheckEmployerAddress? address,
    String? taxId,
    String? url}) {
  return IncomeVerificationPrecheckEmployer(
      name: name ?? this.name,
      address: address ?? this.address,
      taxId: taxId ?? this.taxId,
      url: url ?? this.url);
}