Authority constructor

Authority({
  1. String? issuer,
  2. String? workloadIdentityPool,
  3. String? identityProvider,
  4. List<int>? oidcJwks,
})

Implementation

factory Authority({
  $core.String? issuer,
  $core.String? workloadIdentityPool,
  $core.String? identityProvider,
  $core.List<$core.int>? oidcJwks,
}) {
  final $result = create();
  if (issuer != null) {
    $result.issuer = issuer;
  }
  if (workloadIdentityPool != null) {
    $result.workloadIdentityPool = workloadIdentityPool;
  }
  if (identityProvider != null) {
    $result.identityProvider = identityProvider;
  }
  if (oidcJwks != null) {
    $result.oidcJwks = oidcJwks;
  }
  return $result;
}