toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
_json['provider'] = v1Oauth2ProviderToJson(provider);
_json['authCode'] = authCode;
_json['redirectUri'] = redirectUri;
_json['codeVerifier'] = codeVerifier;
if (nonce != null) {
_json['nonce'] = nonce;
}
_json['clientId'] = clientId;
return _json;
}