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