state property

  1. @BuiltValueField.new(wireName: r'state')
String? get state

A value that helps you identify the request in callback handling. You can generate this value on a per-session basis to protect the callback against Cross-Site Request Forgery (CSRF) attacks. This value must be composed of characters that can be successfully URL-encoded.

Implementation

@BuiltValueField(wireName: r'state')
String? get state;