options property
Map?
get
options
Allows including a small number of string key/value pairs that will be associated with the token and may be used in processing the request.
Implementation
Map? get options => _wrapped.options?.toDartMap();
set
options
(Map? v)
Implementation
set options(Map? v) {
_wrapped.options = v?.jsify();
}