EndUserAuthenticationConfigOauth2JwtBearer.fromJson constructor

EndUserAuthenticationConfigOauth2JwtBearer.fromJson(
  1. Map json_
)

Implementation

EndUserAuthenticationConfigOauth2JwtBearer.fromJson(core.Map json_)
  : this(
      clientKey:
          json_.containsKey('clientKey')
              ? EUASecret.fromJson(
                json_['clientKey'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      jwtClaims:
          json_.containsKey('jwtClaims')
              ? EndUserAuthenticationConfigOauth2JwtBearerJwtClaims.fromJson(
                json_['jwtClaims'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );