toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authorizationUrl = this.authorizationUrl;
final pkceRequired = this.pkceRequired;
final refreshUrl = this.refreshUrl;
final scopes = this.scopes;
final tokenUrl = this.tokenUrl;
return {
'authorizationUrl': ?authorizationUrl,
'pkceRequired': ?pkceRequired,
'refreshUrl': ?refreshUrl,
'scopes': ?scopes,
'tokenUrl': ?tokenUrl,
};
}