toJson method

Map<String, dynamic> toJson()

Implementation

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