copyWithWrapped method

Implementation

LinkTokenCreateRequestIncomeVerificationPayrollIncome copyWithWrapped(
    {Wrapped<List<enums.IncomeVerificationPayrollFlowType>?>? flowTypes,
    Wrapped<bool?>? isUpdateMode}) {
  return LinkTokenCreateRequestIncomeVerificationPayrollIncome(
      flowTypes: (flowTypes != null ? flowTypes.value : this.flowTypes),
      isUpdateMode:
          (isUpdateMode != null ? isUpdateMode.value : this.isUpdateMode));
}