hashedSecret property Null safety

  1. @Column(nullable: true)
String? hashedSecret
read / writeinherited

The client secret, hashed with salt, if this client is confidential.

A confidential client requires its secret to be included when used. If this value is null, this client is a public client.

Implementation

@Column(nullable: true)
String? hashedSecret;