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 (displayName != null) 'displayName': displayName!,
      if (enabled != null) 'enabled': enabled!,
      if (issuer != null) 'issuer': issuer!,
      if (name != null) 'name': name!,
      if (responseType != null) 'responseType': responseType!,
    };