copyWith method
Implementation
IdentityVerificationListRequest copyWith(
{String? secret,
String? clientId,
String? templateId,
String? clientUserId,
String? cursor}) {
return IdentityVerificationListRequest(
secret: secret ?? this.secret,
clientId: clientId ?? this.clientId,
templateId: templateId ?? this.templateId,
clientUserId: clientUserId ?? this.clientUserId,
cursor: cursor ?? this.cursor);
}