GoogleCloudAiplatformV1ServiceAccountSpec.fromJson constructor

GoogleCloudAiplatformV1ServiceAccountSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1ServiceAccountSpec.fromJson(core.Map json_)
    : this(
        enableCustomServiceAccount:
            json_.containsKey('enableCustomServiceAccount')
                ? json_['enableCustomServiceAccount'] as core.bool
                : null,
        serviceAccount: json_.containsKey('serviceAccount')
            ? json_['serviceAccount'] as core.String
            : null,
      );