copyWith method
      
LinkTokenCreateRequestIncomeVerificationPayrollIncome
copyWith({ 
    
    
- List<IncomeVerificationPayrollFlowType> ? flowTypes,
- bool? isUpdateMode,
Implementation
LinkTokenCreateRequestIncomeVerificationPayrollIncome copyWith(
    {List<enums.IncomeVerificationPayrollFlowType>? flowTypes,
    bool? isUpdateMode}) {
  return LinkTokenCreateRequestIncomeVerificationPayrollIncome(
      flowTypes: flowTypes ?? this.flowTypes,
      isUpdateMode: isUpdateMode ?? this.isUpdateMode);
}