toJson method

Map<String, String> toJson()

Implementation

Map<String, String> toJson() {
  return {
    'appId': appId,
    'redirectUri': redirectUrl,
    'state': state,
    'nonce': nonce,
    'scope': scope.value,
    'responseType': responseType,
    'prompt': prompt,
    'altSignature': altSignature,
  };
}