GoogleCloudIntegrationsV1alphaJwt.fromJson constructor

GoogleCloudIntegrationsV1alphaJwt.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaJwt.fromJson(core.Map json_)
    : this(
        jwt: json_.containsKey('jwt') ? json_['jwt'] as core.String : null,
        jwtHeader: json_.containsKey('jwtHeader')
            ? json_['jwtHeader'] as core.String
            : null,
        jwtPayload: json_.containsKey('jwtPayload')
            ? json_['jwtPayload'] as core.String
            : null,
        secret: json_.containsKey('secret')
            ? json_['secret'] as core.String
            : null,
      );