copyWith method

IdentityVerificationListResponse copyWith({
  1. List<IdentityVerification>? identityVerifications,
  2. String? nextCursor,
  3. 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);
}