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