extraQueryParameters property

Map<String, String>? extraQueryParameters

Implementation

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

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

Implementation

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