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