tokenQueryParameters property

Map<String, String>? tokenQueryParameters

Implementation

Map<String, String>? get tokenQueryParameters =>
    jsDecodeMap<String>(_jsObject.tokenQueryParameters);
void tokenQueryParameters=(Map<String, String>? value)

String to string map of custom query parameters added to the /token call.

Implementation

set tokenQueryParameters(Map<String, String>? value) =>
    _jsObject.tokenQueryParameters = jsEncode(value);