copyWithWrapped method

IdentityVerificationListResponse copyWithWrapped({
  1. Wrapped<List<IdentityVerification>>? identityVerifications,
  2. Wrapped<String?>? nextCursor,
  3. Wrapped<String>? requestId,
})

Implementation

IdentityVerificationListResponse copyWithWrapped(
    {Wrapped<List<IdentityVerification>>? identityVerifications,
    Wrapped<String?>? nextCursor,
    Wrapped<String>? requestId}) {
  return IdentityVerificationListResponse(
      identityVerifications: (identityVerifications != null
          ? identityVerifications.value
          : this.identityVerifications),
      nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
      requestId: (requestId != null ? requestId.value : this.requestId));
}