toJson method

Map<String, dynamic> toJson()

Implementation

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