copyWith method

IdentityVerificationListRequest copyWith({
  1. String? secret,
  2. String? clientId,
  3. String? templateId,
  4. String? clientUserId,
  5. String? cursor,
})

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);
}