toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (clientId != null) 'clientId': clientId!,
  if (clientSecret != null) 'clientSecret': clientSecret!,
  if (issuerUri != null) 'issuerUri': issuerUri!,
  if (jwksJson != null) 'jwksJson': jwksJson!,
  if (webSsoConfig != null) 'webSsoConfig': webSsoConfig!,
};