copyWith method
Implementation
CreditPayrollIncomeRefreshRequest copyWith(
{String? clientId, String? secret, String? userToken}) {
return CreditPayrollIncomeRefreshRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
userToken: userToken ?? this.userToken);
}