state property Null safety

  1. @Bind("state")
String? state
read / write

A randomly generated value the client can use to verify the origin of the redirect.

Clients must include this query parameter and verify that any redirects from this server have the same value for 'state' as passed in. This value is usually a randomly generated session identifier.

Implementation

@Bind.query("state")
String? state;