copyWith method
IdentityVerificationListResponse
copyWith({
- List<
IdentityVerification> ? identityVerifications, - String? nextCursor,
- String? requestId,
Implementation
IdentityVerificationListResponse copyWith(
{List<IdentityVerification>? identityVerifications,
String? nextCursor,
String? requestId}) {
return IdentityVerificationListResponse(
identityVerifications:
identityVerifications ?? this.identityVerifications,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}