copyWith method

CreditPayrollIncomeRefreshResponse copyWith({
  1. String? requestId,
  2. String? verificationRefreshStatus,
})

Implementation

CreditPayrollIncomeRefreshResponse copyWith(
    {String? requestId, String? verificationRefreshStatus}) {
  return CreditPayrollIncomeRefreshResponse(
      requestId: requestId ?? this.requestId,
      verificationRefreshStatus:
          verificationRefreshStatus ?? this.verificationRefreshStatus);
}